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

# Copyright (C) 2002-2004 Mandrakesoft (tvignaud@mandrakesoft.com)
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

use strict;
use lib qw(/usr/lib/libDrakX);

use common;
use standalone; #- warning, standalone must be loaded very first, for 'explanations'

use interactive;
use detect_devices;
use lang;
use log;

my $in = 'interactive'->vnew;

sub scan4channels() {
    # xawtv has been installed by DrakX when/if it's detected a tv
    # card.

    $in->do_pkgs->ensure_binary_is_installed('xawtv', 'scantv');

	   my ($ftable_id, $norm);
        #   this table must be checked on each xawtv release:
	   my %freqtables = 
          ("us-bcast" => N("USA (broadcast)"), "us-cable" => N("USA (cable)"), "us-cable-hrc" => N("USA (cable-hrc)"), "canada-cable" => N("Canada (cable)"),
           "japan-bcast" => N("Japan (broadcast)"), "japan-cable" => N("Japan (cable)"), "china-bcast" => N("China (broadcast)"),
           "europe-west" => N("West Europe"), "europe-east" => N("East Europe"), "italy" => N("Italy"), "ireland" => N("Ireland"), "france" => N("France [SECAM]"),
           "newzealand" => N("Newzealand"), "australia" => N("Australia"),
           "southafrica" => N("South Africa"),
           "argentina" => N("Argentina"),
           "australia-optus" => N("Australian Optus cable TV"),
           -1 => N("All")
          );
        #   Info: HRC means "Harmonically Related Carrier"

        my %countries =
          (
           "AR" => [ "argentina" ],
           "AU" => [ "australia" ],
           "FR" => [ "france", "SECAM" ],
           "CA" => [ "canada-cable", "NTSC" ],
           "IE" => [ "ireland" ],
           "IT" => [ "italy" ],
           "JP" => [ "japan-bcast", "NTSC-JP" ],
           "NZ" => [ "newzealand" ],
           "AT|BE|CH|DE|ES|GB|SE" => [ "europe-west" ],
           "US" => [ "us-bcast", "NTSC" ],
           "ZA" => [ "southafrica" ],
           "CN|TW" => [ "china-bcast" ]
          );

        my $tbl;
        my $locale = lang::read('', $>);
        $locale->{country} =~ /$_/ and $tbl = $countries{$_} foreach keys %countries;
        if ($tbl) {
            $ftable_id = $tbl->[0];
            $norm = $tbl->[1] if $tbl->[1];
        }
        # default to pal since most people use that
        $norm ||= "PAL";
        log::l("[drakxtv] guess country=>$locale->{country}, norm=>$norm, area=>$ftable_id");
        my %users = map { $_->[6] || $_->[0] => $_->[7] } grep { $_->[2] == 0 || 500 <= $_->[2] } list_passwd();
        my $user;

	   if ($in->ask_from("TVdrake", N("Please,\ntype in your tv norm and country"),
                          [
                           { label => N("TV norm:"), val => \$norm, list => [ "NTSC", "NTSC-JP", "PAL", "PAL-M", "PAL-N", "PAL-NC", "SECAM" ], type => 'combo' },
					  { label => N("Area:"), val => \$ftable_id, list => [keys %freqtables], format => sub { $freqtables{$_[0]} }, sort => 1 },
					  { label => N("User :"), val => \$user, list => [ keys %users ], sort => 1 },
					  ]
					 )) {
            my $_wait = $in->wait_message(N("Please wait"),
								 N("Scanning for TV channels in progress ..."));
            # we provide scantv a bogus table (france) which will
            # will be ignored since "All" is selected (because of -a)
		  $ftable_id = "france -a " if $ftable_id eq -1;
		  # Note that this'll be broken if/when we implement interactive::qt
		  my $use_X = $in->isa('interactive::gtk') && -x "/usr/X11R6/bin/xvt";
		  my $home = $users{$user}; #ENV{HOME};
		  my $is_bttv_loaded = cat_("/proc/modules");
            # workaround non loaded bttv
		  run_program::run('/sbin/modprobe', 'bttv') if $< == 0 && $is_bttv_loaded !~ /bttv/;
		  my $i = system(($use_X ? "xvt -T '" . N("Scanning for TV channels") . " ...' -e " : "") . 
                           "scantv -n $norm -C /dev/v4l/vbi$::i -c /dev/v4l/video$::i -f $ftable_id -o $home/.xawtv" .
                           ($use_X ? "" : " &>$home/tmp/scantv.log;"));
		  if ($i) {
			 $in->ask_warn(N("Error"), N("There was an error while scanning for TV channels"));
            } else {
			 log::explanations("created file $home/.xawtv");
                $in->ask_warn(N("Have a nice day!"),
                              N("Now, you can run xawtv (under X Window!) !\n")) unless $use_X;
            }
	   }
}

my @devices = detect_devices::getTVcards();
push @devices, { driver => 'bttv', description => 'dummy' } if $::testing && !@devices;
if (@devices) {
    my $not_canceled = 1;
    my $modules_conf;
    # TODO: That need some work for multiples TV cards
    each_index {
	   if (($< == 0 || $::testing) && (grep { detect_devices::isTVcard($_) } @devices)) {
		  require harddrake::v4l;
		  require modules;

		  $modules_conf ||= modules::any_conf->read;
		  $not_canceled &&= harddrake::v4l::config($in, $modules_conf, $_->{driver});
		  $modules_conf->write;
	   }
	   scan4channels() if $not_canceled;
    } @devices
} else {
    $in->ask_warn(N("No TV Card detected!"), formatAlaTeX(
											   N("No TV Card has been detected on your machine. Please verify that a Linux-supported Video/TV Card is correctly plugged in.


You can visit our hardware database at:


http://www.linux-mandrake.com/en/hardware.php3")));
}
$in->exit(0) if defined $in;


# TODO:
# - offer to sort channels after
# - use Video-Capture-V4l-0.221 ?
# - configure kwintv and zapping ? => they've already wizards :-(
# - install xawtv if needed through consolhelper
x/diff/perl-install/share/po/it.po?h=16.64&id=dd95fb3e4da2db04cfd190f4ac913a0d7ead0024'>perl-install/share/po/it.po1851
-rw-r--r--perl-install/share/po/ja.po3557
-rw-r--r--perl-install/share/po/ko.po2494
-rw-r--r--perl-install/share/po/lt.po1823
-rw-r--r--perl-install/share/po/lv.po1820
-rw-r--r--perl-install/share/po/nl.po2884
-rw-r--r--perl-install/share/po/no.po6
-rw-r--r--perl-install/share/po/pt.po2283
-rw-r--r--perl-install/share/po/pt_BR.po1820
-rw-r--r--perl-install/share/po/ro.po1814
-rw-r--r--perl-install/share/po/ru.po4329
-rw-r--r--perl-install/share/po/sk.po2035
-rw-r--r--perl-install/share/po/sl.po1807
-rw-r--r--perl-install/share/po/sp.po6
-rw-r--r--perl-install/share/po/sr.po1842
-rw-r--r--perl-install/share/po/sv.po1856
-rw-r--r--perl-install/share/po/ta.po1832
-rw-r--r--perl-install/share/po/th.po1820
-rw-r--r--perl-install/share/po/uk.po1818
-rw-r--r--perl-install/share/po/wa.po1904
-rw-r--r--perl-install/share/po/zh_CN.po1854
-rw-r--r--perl-install/share/po/zh_TW.po1854
43 files changed, 45109 insertions, 36793 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index 27f15028d..cbb4b8881 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -8359,7 +8359,7 @@ msgstr ""
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8399,7 +8399,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8414,7 +8414,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 6d0e74db9..539d53dcd 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-08-20 21:28-0000\n"
"Last-Translator: Schalk W. Cronj <schalkc@uk.ntaba.com>\n"
"Language-Team: Afrikaans <mandrake@af.org.za>\n"
@@ -91,24 +91,24 @@ msgstr "Konfigureer skyfkoppe afsonderlik"
msgid "Use Xinerama extension"
msgstr "Gebruik Xinerama-ekstensies"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigureer net die \"%s\" kaart (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,18 +117,18 @@ msgstr ""
"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
"DIt word wel onder XFree %s ondersteun wat dalk beter 2D-ondersteuning het."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"U videokaart kan vir 3D-hardewareversnelling ondestuen word in XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -140,7 +140,7 @@ msgstr ""
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,13 +150,13 @@ msgstr ""
"bied,\n"
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installasievertoondrywer)"
#
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Aangepaste"
@@ -177,32 +177,32 @@ msgstr "Resolusie"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opsies"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Verlaat"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -299,25 +299,25 @@ msgstr "Kies die resolusie en kleurdiepte"
msgid "Graphics card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Kanselleer"
@@ -394,11 +394,11 @@ msgstr "XFree86 bediener: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86-drywer: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X met herlaai"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -407,7 +407,7 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
"Wil u X begin met 'n herlaai?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -419,7 +419,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Watter tipe is u ISDN-konneksie?"
@@ -492,7 +492,7 @@ msgstr "Kompak"
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Videomodus"
@@ -500,17 +500,17 @@ msgstr "Videomodus"
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Wagwoord (weer)"
@@ -545,14 +545,14 @@ msgid ""
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
@@ -589,7 +589,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -597,156 +597,156 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Verander"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Verstek"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-grootte"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Geen video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Verwyder inskrywing"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Le etiket word nie toegelaat nie"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "U moet oor 'n ruilpartisie beskik"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Het %s %s koppelvlakke gevind"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Beskik u oor nog?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Sien hardeware inligting"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -757,17 +757,17 @@ msgstr ""
"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
"Bv. ``io=0x300 irq-7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Module opsies:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer meot ek probeer?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -783,15 +783,15 @@ msgstr ""
"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Aftas"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -800,63 +800,63 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +865,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -898,60 +898,60 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -960,42 +960,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoes"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1007,7 +1007,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1015,7 +1015,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1025,13 +1025,13 @@ msgstr ""
"wat aan die internet as 'n klint konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1045,7 +1045,7 @@ msgstr ""
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie klinte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1054,36 +1054,36 @@ msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opsies"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Gebruik sekuriteitsvlak"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1096,7 +1096,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1119,13 +1119,13 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1134,45 +1134,45 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "Gee hulp beskikbaar nie (nog nie).\n"
@@ -1224,106 +1224,106 @@ msgstr "LILO/GRUB metode"
msgid "Yaboot mode"
msgstr "Yaboot metode"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Installeer stelsel"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Kies 'n nuwe grootte"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Fout"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "Geen video"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Kies installasieklas"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1332,22 +1332,22 @@ msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigureer"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Stoor pakketseleksie"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1356,44 +1356,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Stelselmode"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nee, ek verlang outo-aanteken"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan nie /etc/inittab oopmaak vir lees nie: %s"
@@ -1497,26 +1497,34 @@ msgstr "seriaal"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "nuut"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ontheg"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
@@ -1524,27 +1532,27 @@ msgid "Mount point"
msgstr "Hegpunt"
#
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Toets asb. die muis"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
@@ -1633,7 +1641,7 @@ msgstr "Leeg"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Ander"
@@ -1781,7 +1789,7 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Waarskuwing"
@@ -2343,7 +2351,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Gebruikerskode"
@@ -2358,23 +2366,23 @@ msgstr "NIS-domein"
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2460,47 +2468,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Konfigurasie"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Drywer"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Wag asb... Konfigurasie word toegpas"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Wag asb."
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Onbekende model"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2627,7 +2698,8 @@ msgid "/_Quit"
msgstr "Verlaat"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Help"
@@ -2647,76 +2719,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Help/_Aangaande..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Aftas"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Hardeskyfdeteksie."
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Sien hardeware inligting"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Vertoon inligting"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Stel muistoestel op"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Op poort %s bespeur"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Wag asb."
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Drukkerdata word gelees..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekondes"
@@ -3854,7 +3927,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3869,7 +3942,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3878,20 +3951,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3899,12 +3972,12 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van ler %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4146,7 +4219,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -4179,11 +4252,11 @@ msgstr "Installasieklas"
msgid "Please choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
@@ -4263,7 +4336,7 @@ msgstr "Wys outogeselekteerde pakkette."
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installasie"
@@ -4283,7 +4356,7 @@ msgstr "Minimale installasie"
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Besig met installasie"
@@ -4311,18 +4384,18 @@ msgstr "Installeer pakket %s"
#
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aanvaar "
#
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4338,16 +4411,16 @@ msgstr ""
"hieroor beskik nie, druk Kanselleer om installasies vanaf di CDROM te vermy."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -4444,7 +4517,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4522,7 +4595,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Sleutelbord"
@@ -4733,31 +4806,31 @@ msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4767,16 +4840,16 @@ msgstr ""
"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4785,21 +4858,21 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4869,7 +4942,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4881,159 +4954,159 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Spiel word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spiel waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spiel word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP-bediener"
#
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Plaaslike lers"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5049,21 +5122,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeinnaam"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5090,19 +5163,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5126,7 +5199,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5135,28 +5208,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5164,11 +5237,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5176,15 +5249,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5195,17 +5268,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n le floppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5215,7 +5288,7 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5247,15 +5320,15 @@ msgstr ""
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisile Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5264,15 +5337,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -5308,14 +5381,14 @@ msgstr "Gevorderd"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Vorige"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Teks"
@@ -5763,7 +5836,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Sirkulre heg %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
@@ -5903,16 +5976,16 @@ msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
@@ -5949,11 +6022,11 @@ msgstr "Maak boom toe"
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konnekteer aan die internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -5963,24 +6036,20 @@ msgstr ""
"Daar is wel sekere konneksie wat pptp of DHCP gebruik.\n"
"Indien u nie weet nie, kies 'gebruik pppoe'."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
#, fuzzy
msgid "Alcatel speedtouch usb"
msgstr "speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "gebruik dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "gebruik pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "gebruik pptp"
@@ -6075,7 +6144,7 @@ msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
msgid "no network card found"
msgstr "geen netwerkkaart gevind nie"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -6092,15 +6161,15 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Rekenaarnaam"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Netwerkkonfigurasie-assistent"
@@ -6138,8 +6207,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Ou konfigurasie (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN Konfigurasie"
@@ -6176,23 +6245,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Watter protokol verlang u?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Oor watter tipe kaart beskik u?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ek weet nie"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6206,19 +6280,19 @@ msgstr ""
"\n"
"Indien u 'n PCMCIA kaart het, moet u die IRQ en I/O van u kaart weet.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Aborteer"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Gaan voort"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Wat is u ISDN-kaart?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6226,7 +6300,7 @@ msgstr ""
"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
"PCI-kaart op die volgende skerm."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Geen ISDN PCI-kaart gevind nie. Kies asb. een op die volgende skerm."
@@ -6278,7 +6352,7 @@ msgstr "Eerste DNS-bediener (opsioneel)"
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-bediener (opsioneel)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6286,7 +6360,7 @@ msgstr ""
"\n"
"U kan diskonnekteer or herkonfigureer."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6294,11 +6368,11 @@ msgstr ""
"\n"
"U kan u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "U is tans aan die internet gekonnekteer."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6306,33 +6380,33 @@ msgstr ""
"\n"
"U kan aan die internet konnekter of u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "U is nie tans aan die internet gekonnekteer nie."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konnekteer"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Diskonnekteer"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Stel netwerk op"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetkonneksie en konfigurasie"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6351,12 +6425,12 @@ msgstr ""
"\n"
"Drk OK om voort te gaan."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6367,7 +6441,7 @@ msgstr ""
"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
"& Netwerkkonneksie te herkonfigureer.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6379,72 +6453,72 @@ msgstr ""
"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Kies die profiel om te konfigureer"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Kundige bedryfsvlak"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normale modemkonneksie"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "Op poort %s bespeur"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN konneksie"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s bespeur"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL konneksie"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "op koppelvlak %s bespeur"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabelkonneksie"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kabelkonneksie bespeur"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN konneksie"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet kaart(e) bespeur"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Kies die konneksie wat u wil konfigureer"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6454,23 +6528,23 @@ msgstr ""
"Kies die een wat u verlang.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internetkonneksie"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6481,7 +6555,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6491,7 +6565,7 @@ msgstr ""
"\n"
"Die kongiurasie gaan op u stelsel toegepas word.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6499,14 +6573,14 @@ msgstr ""
"Nadat dit klaar is, sal dit beter wes om u X-omgewing te herlaai\n"
"om die rekenaarnaamveranderingprobleem te voorkom."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6518,7 +6592,7 @@ msgstr ""
"U kan die toestel net so aanvaar.\n"
"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6528,45 +6602,45 @@ msgstr ""
"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
"(1.2.3.4) gegee word."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigureer netwerktoestel %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr "(drywer %s)"
#
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adres"
#
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Outomatiese IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Gelaai tydens herlaaityd"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6578,42 +6652,53 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Instaanbediener moet begin met ftp://"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Instaanbediener moet begin met http://"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8018,7 +8103,7 @@ msgstr "Netwerk op pad af"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8526,11 +8611,6 @@ msgstr ""
"Vul asb. die FTP-instaanbediener inligting in\n"
"Los dit oop indien u nie FTP-instaanbediener verlang nie"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Instaanbediener moet begin met http://"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8576,6 +8656,43 @@ msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Eksterne lpd drukkeropsies"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Verstek)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Wag asb. installasie word voorberei"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
@@ -8874,7 +8991,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8968,7 +9085,7 @@ msgstr "Konnekteer aan die internet"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9015,7 +9132,7 @@ msgstr "Netwerkkoppelvlak"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9040,7 +9157,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9056,7 +9173,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9071,7 +9188,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9120,8 +9237,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9158,11 +9275,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installeer pakket %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
@@ -9210,16 +9327,6 @@ msgstr "Voeg gebruiker by"
msgid "Add/Del Clients"
msgstr "DHCP-Klint"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr ""
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9272,53 +9379,68 @@ msgstr "Voeg gebruiker by"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP-Klint"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Sluit konfigurasie af"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "herkonfigureer"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9441,13 +9563,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Toetsbladsye"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9456,41 +9578,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Kan nie %s oopmaak nie: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9501,68 +9623,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9570,831 +9692,833 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fout met die les van ler %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Selekteer lOer"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipe"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Stel lerstelsels op"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Muistoestel: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunler"
#
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN konneksie"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Reddingspartisietabel"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Rekenaarnaam"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Wagwoord"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Bedienernaam:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Reddingspartisietabel"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -10402,102 +10526,102 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Die volgende pakkette gaan installeer word"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in ler"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Stel lerstelsels op"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10529,7 +10653,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10538,7 +10662,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10579,7 +10703,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10607,17 +10731,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10634,7 +10758,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10674,7 +10798,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10685,7 +10809,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10698,7 +10822,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10780,8 +10904,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsole hulpprogramme"
@@ -10858,28 +10982,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Poort"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Verlaay installasie"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
@@ -10979,10 +11103,6 @@ msgstr "Assistent..."
msgid "Apply"
msgstr "Pas toe"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Wag asb... Konfigurasie word toegpas"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Gekonnekteer"
@@ -11096,7 +11216,7 @@ msgstr "Modulenaam"
msgid "Size"
msgstr "Grootte"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11161,12 +11281,12 @@ msgstr "Uitset"
msgid "Build the disk"
msgstr "Bou die skyf"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11175,12 +11295,12 @@ msgstr ""
"Daar is geen medium for toestel %s nie.\n"
"Sit asb. een in."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Kon nie vurk nie: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11662,157 +11782,157 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Werkgroep:"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partisie %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Gebruikerskode"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Uitwis"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Klaar"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Voeg module by"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Voeg drukker by"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Verwyder tou"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Aanvaar gebruiker"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Weergawe: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Poort"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Stoor pakketseleksie"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Gebruikerskode"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Werkgroep:"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11824,137 +11944,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "herlaaiskyfskepping"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resolusie"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Kies 'n ler"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Drukkernaam:"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Postinstallasiekonfigurasie"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Verlaat"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Installeer stelsel"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Konfigureer dienste"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Teruglus"
+msgid "Preview"
+msgstr "toestel"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "toestel"
+msgid "Save theme"
+msgstr "Installeer stelsel"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Kies 'n monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Drukkermodelkeuse"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Tik drukkertoestel URI in"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Toestel word afgetas..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12095,6 +12225,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
@@ -12125,11 +12262,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Kon nie die intydse opgradering begin nie !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr ""
@@ -12413,16 +12550,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12498,7 +12632,7 @@ msgstr "Installeer stelsel"
msgid "Exit install"
msgstr "Verlaay installasie"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12750,6 +12884,21 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Postinstallasiekonfigurasie"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Teruglus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Instaanbediener moet begin met ftp://"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Verlaat"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
@@ -12875,9 +13024,6 @@ msgstr "Wetenskaplike werkstasie"
#~ msgid "Test again"
#~ msgstr "Toets weer"
-#~ msgid "Setting security level"
-#~ msgstr "Sekuriteitsvlak word gestel."
-
#~ msgid "Select a graphics card"
#~ msgstr "Selekteer 'n videokaart"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 63f9c0c05..621bd9f70 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
"Language-Team: Arabic \n"
@@ -90,24 +90,24 @@ msgstr "اعداد كل الرؤوس بشكل مستقل"
msgid "Use Xinerama extension"
msgstr "استخدام امتداد Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "قم بإعداد البطاقة \"%s\" فقط (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشل أفضل في الوضع "
"ثنائي الأبعاد."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد مع XFree %s"
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s مع دعم تجريبي للرسوم ثلاثية الأبعاد"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشكل أفضل في وضعية "
"الرسوم ثنائية الأبعاد."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -148,12 +148,12 @@ msgstr ""
"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (مشغل عرض التثبيت)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "مخصص"
@@ -174,32 +174,32 @@ msgstr "دقة العرض"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "خيارات"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "موافق"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "خروج"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -295,25 +295,25 @@ msgstr "اختر دقة العرض و عمق الألوام"
msgid "Graphics card: %s"
msgstr "بطاقة الشاشة: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "الغاء"
@@ -390,11 +390,11 @@ msgstr "خادم XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "مشغل XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "واجهة رسومية عند بدء التشغيل"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -403,7 +403,7 @@ msgstr ""
"يمكنني جعل جهازك يبدأ X بشكل آلي بعد الإقلاع.\n"
"هل تريد X أن بيدأ بعد إعادة تشغيل جهازك؟"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -415,7 +415,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr ""
@@ -487,7 +487,7 @@ msgstr "مدمج"
msgid "compact"
msgstr "مدمج"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "وضعية الفيدية"
@@ -495,17 +495,17 @@ msgstr "وضعية الفيدية"
msgid "Delay before booting default image"
msgstr "توقيت ما قبل اقلاع الصورة الافتراضية"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "كلمة المرور"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "كلمة المرور (ثانية)"
@@ -539,14 +539,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "خيار ``تشديد خيارات سطر الأوامر`` بدون قائدة من دون كلمة مرور"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "رجاء جاول مرة أخرى"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطابقة"
@@ -583,7 +583,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -591,155 +591,155 @@ msgstr ""
"ها هنا المدخلات المختلفة.\n"
"يمكنك اضافة مدخلات أخرى أو تغيير الموجودين."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "اضافة"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "انتهى"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "تعديل"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل الذي تريد اضافته؟"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "لينكس"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "نظام آخر (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "نظام آخر (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "نظام آخر (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "صورة"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "الجذر"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "الحاق"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "للقراءة و الكتابة"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "الجدول"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "غير آمن"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "عنوان"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "الإفتراضي"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "حجم Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "لا فيديو"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "ازل المدخل"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "غير مسموح بالعلامات الفارغة"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "يجب أن تحدد صورة النواة"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "يجب عليك تحديد تقسيم جذر"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "هذه العلامة مستخدمة مسبقا"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "تم ايجاد %s %s واجهات"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "هل عندك واحدة أخرى؟"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "هل لديك أي واجهات %s؟"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "لا"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "نعم"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "عرض معلومات العتاد"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "جاري تثبيت مشغل %s للبطاقة %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(الوحدة %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -750,17 +750,17 @@ msgstr ""
"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
"مثلا, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "خيارات الوحدة:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "أي مشغل %s يجب أن استخدمه؟"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -778,15 +778,15 @@ msgstr ""
"لكن\n"
"لا يجب أن يتسبب ذلك في أي مشاكل."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "تحقق آلي"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "حدد الخيارات"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -795,64 +795,64 @@ msgstr ""
"فشل تحميل الوحدة %s.\n"
"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "الوصول الى برامج X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "اسمح بـ\"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "الوصول الى ملفات الإدارة"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(تم اضافة %s مسبقا)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "كلمة المرور هذه بسيطة جدا"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "رجاءً قم بإعطاء اسم مستخدم"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "اسم المستخدم يجب أن يحتوي فقط على الحروف الصغيرة, الأرقام, `-' و `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "اضف مستخدم"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -861,32 +861,32 @@ msgstr ""
"أدخل مستخدم\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "وافق على المستخدم"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "اسم المستخدم"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "الغلاف"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "أيقونة"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "دخول آلي"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -894,54 +894,54 @@ msgstr ""
"يمكنني اعداد جهازك لتسجيل الدخول آليل لمستخدم ما.\n"
"هل تريد استخدام هذه الميزة؟"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "اختر المستخدم الافتراضي:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "اختر مدير النوافذ الذي سيتم تشغيله:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "رجاء اختر لغة الاستخدام."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "يمكنكن اختيار لغات أخرى و التي ستكون متوفرة بعد التثبيت"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "الكل"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "اسمح لكل المستخدمين"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "لا مشاركة"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "يمكنك التصدير باستخدام NFS أو Samba. أي منهما تريد"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "الحزمة الضرورية %s مفقودة"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -950,11 +950,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "شغّل userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -962,56 +962,56 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "مرحبا بالمخترقين"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "فقير"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "القياسي"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "مرتفع"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "مرتفع أكثر"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "مرتفع جدا"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1021,40 +1021,40 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "خيارات"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "مستوى الأمن"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "إستخدم libsafe للملقمات"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1062,7 +1062,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1079,58 +1079,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "لا توجد مساحو كافية في /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "سطح المكتب"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "يمكنك تثبيت محمّل الإقلاع على التجزئة %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "لا توجد مساعدة لهذا حتى الآن.\n"
@@ -1182,106 +1182,106 @@ msgstr "وضع Lilo/grub"
msgid "Yaboot mode"
msgstr "وضع Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "تثبيت النظام"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "اعمل تجزئة جديدة"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "خطأ"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "جاري نسخ %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "لا فيديو"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "اختر نوع التثبيت"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1290,21 +1290,21 @@ msgstr ""
"أنت تستخدم %s كمدير اقلاع حاليا.\n"
"اضغط على تهيئة لتشغيل معالج الإعداد"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "إعداد"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr ""
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1313,44 +1313,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "وضع النظام"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "شغّل X-Window عند بدء التشغيل"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "لا, لا أريد دخولا أليا"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "نعم, أريد دخولا آليا مع هذا )المستخدم, سطح المكتب("
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "موافق"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "لم يمكن فتح /etc/inittab للقراءة: %s"
@@ -1447,53 +1447,61 @@ msgstr "النمسا"
msgid "United States"
msgstr "الولايات المتحدة"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "جديد"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "ازل التجهيز"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "جهز"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "خادم"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "نقطة التجهيز"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "رجاء أدخل سرعة سواقة كتابة الأقراص"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "خادم"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "نقطة التجهيز: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
@@ -1584,7 +1592,7 @@ msgstr "فارغ"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "أخرى"
@@ -1724,7 +1732,7 @@ msgstr ""
"جدول التقسيم المحفوظ ليس بنفس الحجم\n"
"لا زلت تريد الإكمال؟"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "تحذير"
@@ -2254,7 +2262,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "اسم المستخدم"
@@ -2268,23 +2276,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "ابحث في أجهزة الخادم"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s تجهيز %s قد فشل"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "لا أعرف كيف أجهز %s في النوع %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2362,48 +2370,111 @@ msgstr "لا شيئ للعمل"
msgid "Error opening %s for writing: %s"
msgstr " فتحة الخطإ %s للكتابة :%s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr " CUPS اعدادات"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "المحرك"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "مساعدة"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "من فضلك انتظر"
+
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "مشغل X"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "غير معروف"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2528,7 +2599,8 @@ msgid "/_Quit"
msgstr "خروج"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_مساعدة"
@@ -2548,75 +2620,76 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_تقرير خطأ"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/مساعدة/_حول البرنامج..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "تحقق آلي"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "التحقق من الأقراص الصلبة"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "عرض معلومات العتاد"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "اعرض المعلومات"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "إعداد الفأرة"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "من فضلك انتظر"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "جاري ازالة الطابعة \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d ثوان"
@@ -3719,7 +3792,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3734,7 +3807,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3743,31 +3816,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS لا تسطيع ا ستعمال هذ ا البرنامج مع"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr ""
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -3977,7 +4050,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr ""
@@ -4003,11 +4076,11 @@ msgstr ""
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr ""
@@ -4081,7 +4154,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr ""
@@ -4101,7 +4174,7 @@ msgstr ""
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr ""
@@ -4128,17 +4201,17 @@ msgid "Installing package %s"
msgstr ""
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "قبول"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4149,16 +4222,16 @@ msgid ""
msgstr ""
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr ""
@@ -4254,7 +4327,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4332,7 +4405,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "لوحة المفاتيح"
@@ -4532,66 +4605,66 @@ msgstr ""
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4630,7 +4703,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4642,155 +4715,155 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "خادم NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "بطاقة الصّوت ISA هل عندك عند"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "الفأرة"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "طابعة"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "احصل على خطوط Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "خادم LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr " الخادم NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4806,21 +4879,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domain name"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4838,19 +4911,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "المدخل المرن الثّاني"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "تخطي"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4866,7 +4939,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -4875,28 +4948,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "آسف , لا مدخل مرن متاح"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr " إنشاء قرص الا قلا ع "
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr " bootloader إعداد "
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4904,25 +4977,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr " aboot هل تريد أن تستخدم "
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "bootloader التّركيب "
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4933,24 +5006,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4969,16 +5042,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4987,15 +5060,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr ""
@@ -5030,14 +5103,14 @@ msgstr "متقدم"
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<-سابق "
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "التالي"
@@ -5480,7 +5553,7 @@ msgstr "Right \"Windows\" key"
msgid "Circular mounts %s\n"
msgstr "Circular mounts %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5618,15 +5691,15 @@ msgstr "ولا واحد"
msgid "No mouse"
msgstr "No mouse"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "من فضلك اختبر الفأرة"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr " WHEEL! حرّك "
@@ -5663,34 +5736,30 @@ msgstr "Collapse Tree"
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "وصّل إلى الإنترنت "
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "use dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "use pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "use pptp"
@@ -5789,7 +5858,7 @@ msgstr ""
msgid "no network card found"
msgstr "لا بطاقة شبكة وجدت "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "ا عداد شبكة"
@@ -5801,15 +5870,15 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Host اسم "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "معالج إعداد الشبكة"
@@ -5847,8 +5916,8 @@ msgid "Old configuration (isdn4net)"
msgstr "إعداد قديم (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN إعداد "
@@ -5880,23 +5949,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr ""
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr ""
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "لا أعرف "
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -5905,25 +5979,25 @@ msgid ""
"card.\n"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "إنهاء"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "تابع"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "ISDN ما هية بطاقتك"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
@@ -5975,54 +6049,54 @@ msgstr "( خادم ا الأوّل ( اختياريّ "
msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "اتصل"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "اقطع الإتصال"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "قم بإعداد الإتصال"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6034,12 +6108,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6047,7 +6121,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6055,95 +6129,95 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "وضعية الخبير"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN connection"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detected %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "وصلة ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "وصلة LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "وصلة انترنت"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "ا عداد الشّبكة "
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6151,27 +6225,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6179,49 +6253,49 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr ""
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr "(driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP address"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatic IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "ابدأ عند الإقلاع"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6229,41 +6303,49 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "الخادم DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway device"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:380
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Proxies اعداد"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
msgstr ""
#: ../../network/shorewall.pm_.c:24
@@ -7584,7 +7666,7 @@ msgstr "جاري الطباعة على الطابعة \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8060,10 +8142,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr ""
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8109,6 +8187,42 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "مستوى الأمن"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "مستوى الأمن"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr ""
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr "المرجع"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "جاري ضبط مستوى الأمن"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8341,7 +8455,7 @@ msgstr "إنترنت"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "نظام"
@@ -8428,7 +8542,7 @@ msgstr "وصّل إلى الإنترنت "
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -8476,7 +8590,7 @@ msgstr "واجهات الإستخدام"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8501,7 +8615,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"حوّل ماكينتك إلى خادم قويّ مع/ب فقط نقرات قليلة من ال الفأرة : خادم الويب , "
@@ -8519,7 +8633,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8534,7 +8648,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -8583,8 +8697,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -8620,11 +8734,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "تركيب طرود ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
@@ -8672,16 +8786,6 @@ msgstr "اضف مستخدم"
msgid "Add/Del Clients"
msgstr "DHCP العميل"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "مساعدة"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -8735,53 +8839,68 @@ msgstr "اضف مستخدم"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP العميل"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "جاري الإعداد..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "إعداد متقدم"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "إعداة الإعداد"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "آسف , لا مدخل مرن متاح"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -8898,13 +9017,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -8913,41 +9032,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, c-format
msgid "Bad password on %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "لا يمكن أن ينفتح %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -8958,64 +9077,64 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9023,297 +9142,299 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr "ارسال الملفات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "انسخ ملفات النظام قبل:"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم في النسخ الإحتياطي."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "المستخدمون"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "فضلا أدخل اسم المستضيف أو عنوان IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "رجاء أدخل اسم الدخول"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "رجاء كلمة المرور"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "تذكّر كلمة السّرّ هذه "
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "إلى المساعد CD/DVDROM الاستعمال "
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "رجاء اختر مساحة القرص المدمج"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "اختر ملف"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "الشبكة"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "النوع"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "كلّ ساعة "
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "يوميًّا "
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "أسبوعيّا"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "شهريا"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "استخدم المراقب"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9321,7 +9442,7 @@ msgstr ""
"فضلا اختر الفترة \n"
"ما بين كل عملية نسخ احتياطي"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -9329,78 +9450,78 @@ msgstr ""
"رجاء اختر\n"
"وسيط النسخ الاحتياطي"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "ماذا "
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "أين"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "متى "
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "خيارات أكثر"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "إعدادات Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "على القرص الصّلب"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "عبر الشّبكة"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "نظام المساعد"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "مستخدمو المساعد"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "اخترالمستخدم يدويًّا"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -9408,7 +9529,7 @@ msgstr ""
"\n"
"مصادر المساعد :\n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -9416,7 +9537,7 @@ msgstr ""
"\n"
"-ملفّات النّظام :\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -9424,7 +9545,7 @@ msgstr ""
"\n"
"-ملفّات المستخدم:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -9432,7 +9553,7 @@ msgstr ""
"\n"
"-الملفّات الأخرى:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -9441,32 +9562,32 @@ msgstr ""
"\n"
"- احفد القرص الصّلب على الطّريق :%s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "جهاز الفأرة: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -9475,12 +9596,12 @@ msgstr ""
"\n"
"-FTP و على host احفد على: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -9489,14 +9610,14 @@ msgstr ""
"\n"
"-FTP و على host احفد على: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -9504,19 +9625,19 @@ msgstr ""
"\n"
"- خيارات:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -9525,332 +9646,332 @@ msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "اضغط موافق لاستعادة ملفات اخرى"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "انسخ ملفات النظام قبل:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "وصلة FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "وصلة آمنة"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "اختر وسيط آخر للاستعادة منه"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "وسيط آخر"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "استعد النّظام"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "استعد آخر"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "اختر مسار الإستعادة (بدلاً من / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "قم بنسخ احتياطي جديد فبل الإستعادة (فقط للنسخ الإحتياطية المتدرجة)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "أزل أدلة المستخدمين قبل الإستعادة"
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "استعد آخر"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "استعادة جدول التقسيم"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Host اسم "
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "كلمة المرور"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "اسم المستخدم"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "اسم المستضيف :"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "استعد آخر"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "استعد كل النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "استعادة مخصصة"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "استعادة جدول التقسيم"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "السابق"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "حفظ"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "ابني النسخة الإحتياطية"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "استعادة"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "رجاء اختر تاريخ الإستعادة..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9858,59 +9979,59 @@ msgstr ""
"لم يتم ايجاد ملف تهيئة \n"
"فضلا اضغط معالج لأو متقدم."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "تحت التطوير ... انتظر فضلا"
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "انسخ ملفات النظام"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "انسخ ملفات المستخدم"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "انسخ ملفات أخرى"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "ارسال الملفات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "جاري ارسال الملفات..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "قم بالنسخ الآن من ملف التهيئة"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "اعرض تهيئة النسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "إعدادات المعالج"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "إعداد متقدم"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "قم بالنسخ الإحتياطي الآن"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -9942,7 +10063,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9951,7 +10072,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -9992,7 +10113,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10020,19 +10141,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" جميع الحقوق محفوظة (C) 2001 MandrakeSoft من دوبون سيباستيان <dupont_s"
"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10065,7 +10186,7 @@ msgstr ""
"02111-1307,\n"
" USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10105,7 +10226,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10116,7 +10237,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10129,7 +10250,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10211,8 +10332,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "أدوات سطر الأوامر"
@@ -10287,28 +10408,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "استعادة"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "ما بعد ازالة التثبيت"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
@@ -10409,10 +10530,6 @@ msgstr "المعالج..."
msgid "Apply"
msgstr "تطبيق"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "متّصل "
@@ -10532,7 +10649,7 @@ msgstr "اسم الوحدة"
msgid "Size"
msgstr "حجم"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "دريك للاقراص المرنة"
@@ -10597,12 +10714,12 @@ msgstr "الناتج"
msgid "Build the disk"
msgstr "جهز القرص"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "تأكد من وجود الوسيط للوحدة %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10611,12 +10728,12 @@ msgstr ""
"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
"فضلاً ادخل وسط فى الوحدة."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "تعذر تنفيذ: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11061,154 +11178,154 @@ msgstr ""
"\n"
"اضغط على تهيئة لتشغيل معالج الإعداد."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "مجموعة العمل"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "المستخدم"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "إلغاء"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "انتهى"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "اضافة وحدة"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "أضف طابعة جديدة"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "تم ازالة اختيار الكل"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "وافق على المستخدم"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
msgstr ""
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "البوابة"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "إختيار وحدات الطابعة"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "المستخدم"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "مجموعة العمل"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "لم يتم ايجاد بطاقة تلفاز!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
#, fuzzy
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
@@ -11229,136 +11346,146 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "صنع قرص مرن لبدء النظام"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "دقة العرض"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "إختر ملف"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "اسم المستخدم"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Proxies اعداد"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "خروج"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "تثبيت النظام"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "تهيئة الخدمات"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "وحدة"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "وحدة"
+msgid "Save theme"
+msgstr "تثبيت النظام"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "إختر شاشة"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "إختيار وحدات الطابعة"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr ""
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "جاري التحقق من الأجهزة ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11502,6 +11629,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "الاستعمال: keyboarddrake [--expert][لوحة المفاتيح]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "الاستعمال: keyboarddrake [--expert][لوحة المفاتيح]\n"
@@ -11530,11 +11664,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "لم أتمكن من بدء الترقية الحية !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "تم عمل التغيير, و لكن ليتم تفعيله يجب عليك الخروج"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -11815,16 +11949,13 @@ msgstr ""
"يمكنك الآن مسح المستندات باستخدام ``XSane'' من فرع وسائط متعددة/برامج رسومية "
"في قائمة التطبيقات."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -11899,7 +12030,7 @@ msgstr "تثبيت تحديثات النظام"
msgid "Exit install"
msgstr "الخروج من التثبيت"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12146,6 +12277,18 @@ msgstr "وسائط متعددة - نسخ أقراص"
msgid "Scientific Workstation"
msgstr "محطة عمل علمية"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Proxies اعداد"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "خروج"
+
#~ msgid ""
#~ "tinyfirewall configurator\n"
#~ "\n"
@@ -12507,9 +12650,6 @@ msgstr "محطة عمل علمية"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "جاري ضبط مستوى الأمن"
-
#~ msgid "Select a graphics card"
#~ msgstr "اختر بطاقة شاشة"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 197fab395..57ae9d501 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-09-01 22:26GMT +0200\n"
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
@@ -91,24 +91,24 @@ msgstr "Bütün başlıqları ayrı ayrı quraşdır"
msgid "Use Xinerama extension"
msgstr "Xinerama ifadələrini işlət"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Təkcə \"%s\" kartını qur (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -120,17 +120,17 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir fikir olar."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "SINAQ MƏRHƏLƏSİNDƏKİ 3D sür'ətləndirmə dəstəkli XFree %s"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,7 +144,7 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir seçki olar."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -153,12 +153,12 @@ msgstr ""
"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
"DİQQƏT! BU SINAQ MƏRHƏLƏSINDƏDIR VƏ KOMPÜTERİNİZ DONDURA BILƏR."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Xüsusi"
@@ -179,32 +179,32 @@ msgstr "Rezolyusiya"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Seçənəklər"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Oldu"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Çıx"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -297,25 +297,25 @@ msgstr "Rezolyusiya və rəng dərinliyini seçin"
msgid "Graphics card: %s"
msgstr "Ekran kartı: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Ləğv et"
@@ -392,11 +392,11 @@ msgstr "XFree86 verici: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sürücü: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X ilə Açılış"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -405,7 +405,7 @@ msgstr ""
"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
"Açılışda X Window ilə başlamaq istəyirsiniz?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -417,7 +417,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "ISDN bağlantınızın növü nədir?"
@@ -490,7 +490,7 @@ msgstr "Bəsit"
msgid "compact"
msgstr "bəsit"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Ekran modu"
@@ -498,17 +498,17 @@ msgstr "Ekran modu"
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Parol (təkrar)"
@@ -543,14 +543,14 @@ msgid ""
msgstr ""
"``Əmr sətiri seçənəklərini məhdudlaşdır`` seçənəyi parolsuz bir işə yaramaz"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Parollar uyğun gəlmir"
@@ -587,7 +587,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -595,156 +595,156 @@ msgstr ""
"Buradakı bir birindən fərqli seçənəklərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Əlavə et"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Qurtardı"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Təkmilləşdir"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Ne cür bir giriş istəyirsiniz?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linuks"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Digər sistemlər (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Digər sistemlər (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Digər sistemlər (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Əks"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Kök"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Sonuna əlavə et"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Oxu-yaz"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Cədvəl"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "E'tibarsız"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Əsas"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd böyüklüyü"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVİdeo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Girişi sil"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Boş etiket qəbul edilə bilməz"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Bu etiket istifadə edilməz"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ara üzü tapıldı"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Başqa var?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Heç %s ara üzü var?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Bəli"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Avadanlıq mə'lumatına bax"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartı (%s) üçün sürücü yüklənir"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -755,17 +755,17 @@ msgstr ""
"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
"Məsələn ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modul seçənəkləri:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hansı %s sürücüsü sınansın?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -782,15 +782,15 @@ msgstr ""
"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
"kompüterinizə heç bir şey olmaz."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Seçənəkləri göstər"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -799,64 +799,64 @@ msgstr ""
"%s modulunun yüklənməsi iflas etdi.\n"
"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Xahiş edirik bir istifadəçi adı alın"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "İstifadəçini əlavə et"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +865,32 @@ msgstr ""
"Bir istifadəçi girin\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "İstifadəçini qəbul et"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Həqiqi adı"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "İstifadəçi adı"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Qabıq"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -899,59 +899,59 @@ msgstr ""
"Kompüterinizi avtomatik olaraq bir istifadəçi ilə başlada bilərəm.\n"
"İstəmirsiniz isə rədd edin."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Hamısı"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "İstifadəçi əlavə et"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS başlayır"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -960,42 +960,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Krakerlərə xoşgəlmişsiniz"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Zəif"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Yüksək"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Yüksək"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Şübhəci"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1006,7 +1006,7 @@ msgstr ""
"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1014,7 +1014,7 @@ msgstr ""
"Parollar fəallaşdırıldı, yenə də bir şəbəkə üstündə istifadə edilməməsi "
"tövsiyə edilir."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1023,13 +1023,13 @@ msgstr ""
"İnternetə bağlı bir kompüter üçün standart və tövsiyə edilən bir "
"təhlükəsizlik səviyyəsidir."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1044,7 +1044,7 @@ msgstr ""
"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
"artırılmışdır. "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1054,36 +1054,36 @@ msgstr ""
"tamamilə qapalıdır.\n"
"Təhlükəsizlik səviyyəsi indi ən üstdədir."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Seçənəklər"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Təhlükəsizlik səviyyəsini seçin"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1096,7 +1096,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1121,7 +1121,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
@@ -1135,7 +1135,7 @@ msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
@@ -1150,7 +1150,7 @@ msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1164,7 +1164,7 @@ msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1179,33 +1179,33 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Masa Üstü"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Başlama Menyusu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "hələlik yardım sistemi mövcud deyildir.\n"
@@ -1257,106 +1257,106 @@ msgstr "Lilo/grub modu"
msgid "Yaboot mode"
msgstr "Yaboot modu"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Sistemi qur"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Yeni bölmə yarat"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Xəta"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NoVİdeo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Quruluş sinifini seçin"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1365,22 +1365,22 @@ msgstr ""
"Açılış İdarəçisi olaraq hazırda %s işlədirsiniz.\n"
"Quraşdırma sehirbazını başlatmaq üçün tıqlayın."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Qur"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Paket seçkilərini saxla"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1389,45 +1389,45 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistem modu"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Açılışda X-Window sistemini başlat"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Xeyr, Avtomatik giriş istəmirəm"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Bəli, bu istifadəçi üçün avtomatik giriş istəyirəm (istifadəçi, masa üstü)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Oldu"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab oxunmaq üçün açıla bilmir: %s"
@@ -1533,53 +1533,61 @@ msgstr "serial"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "yeni"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ayır"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Bağla"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Bağlama nöqtəsi"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Seçənəklər: %s"
@@ -1669,7 +1677,7 @@ msgstr "Boş"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Digər"
@@ -1820,7 +1828,7 @@ msgstr ""
"Yedək bölmə cədvəli eyni böyüklüyə sahib deyil\n"
"Davam etmək istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Xəbərdarlıq"
@@ -2391,7 +2399,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "İstifadəçi adı"
@@ -2406,23 +2414,23 @@ msgstr "NIS sahəsi"
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s'i necə şəkilləndirəcəyimi bilmirəm (Növ: %s)"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırkən xəta oldu: %s"
@@ -2512,46 +2520,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Sürücü"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Yardım"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2678,7 +2750,8 @@ msgid "/_Quit"
msgstr "Çıx"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Kömək"
@@ -2698,76 +2771,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Kömək/_Haqqında..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Avtomatik yoxla"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Sabit disk seçkisi"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Avadanlıq mə'lumatına bax"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Mə'lumatı göstər"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Siçan qurğuları"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "%s qapısında tapıldı"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Xahiş edirik gözləyin"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d saniyə sonra çıxılacaq"
@@ -4231,7 +4305,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4255,7 +4329,7 @@ msgstr ""
"\n"
"Bu vericiləri qurmaq istəyirsiniz?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4264,20 +4338,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NİS domeyni olmadan translasiya işlədilə bilməz"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "%s sürücüsünə FAT şəkilləndirilmiş bir disket taxın"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT şəklində deyildir"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4285,12 +4359,12 @@ msgstr ""
"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
"defcfg=floppy''ilə başladın."
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "%s faylı oxunurkan xəta oldu"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4536,7 +4610,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoşgəlmişsiniz"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Disket sürücü yoxdur"
@@ -4568,11 +4642,11 @@ msgstr "Qurulum Sinifi"
msgid "Please choose one of the following classes of installation:"
msgstr "Xahiş edirik aşağıdakı qurulum siniflərindən birisini seçiniz:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Fərdi paket seçkisi"
@@ -4648,7 +4722,7 @@ msgstr "Avtomatik seçili paketləri göstər"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Qurulum"
@@ -4671,7 +4745,7 @@ msgstr "Qurulumdan çıx"
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Qurulur"
@@ -4698,17 +4772,17 @@ msgid "Installing package %s"
msgstr "%s paketi qurulur"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Qəbul Et"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Rədd Et"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4723,16 +4797,16 @@ msgstr ""
"Əgər Cd-Rom əlinizdə deyilsə bu Cd-Rom'dan qurmamaq üçün İMTİNA ET'ə basın."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Yenə də davam edək?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Paketləri istərkən bir xəta oldu:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Paketlər qurulurkən bir xəta oldu:"
@@ -4857,7 +4931,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4975,7 +5049,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5052,7 +5126,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatura"
@@ -5265,29 +5339,29 @@ msgstr "%s sürücüsünə bir disket taxın"
msgid "Selected size is larger than available space"
msgstr "Seçili böyüklük var olandan daha böyükdür"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5298,16 +5372,16 @@ msgstr ""
"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
"basın."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlı Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Qurulum hazırlanır"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5316,21 +5390,21 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Qurulum sonrası qurğular"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5400,7 +5474,7 @@ msgstr ""
"USA\n"
"ünvanına yazınız."
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5412,164 +5486,164 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Əks ünvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Əks ünvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Çap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Başqa var?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Mündəricat"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kartı"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Səs kartı"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kartı"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "NIS istifadə et"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Yerli Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5585,21 +5659,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Sahə(domain) adı"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5630,19 +5704,19 @@ msgstr ""
"yerləşdirin\n"
"və \"OLDU\" basın."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "İlk disket sürücü"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "İkinci disket sürücü"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Nəzərə Alma"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5672,7 +5746,7 @@ msgstr ""
"və \"OLDU\" basın.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5681,28 +5755,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Bağışlayın, disket sürücü yoxdur"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Açılış disketi yaratmaq üçün istifadə ediləcək disket sürücüyü seçin"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Açılış disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Açılış yükləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5710,11 +5784,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5722,16 +5796,16 @@ msgstr ""
"aboot qurulumunda xata, \n"
"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yükləyicini qur"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5748,17 +5822,17 @@ msgstr ""
" Sonra da bunları yazın: shut-down\n"
"Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5768,7 +5842,7 @@ msgstr ""
"\n"
"Həqiqətən də çıxmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5794,15 +5868,15 @@ msgstr ""
"Sisteminizin qurğuları haqqında daha geniş bilgiyi Linuks Mandrake \n"
"İstifadəçi Kitabcığında tapa bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5816,15 +5890,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmək istəyə bilərsiniz axı.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Avtomatlaşdırılmış"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Təkrarla"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Paket seçkilərini saxla"
@@ -5861,14 +5935,14 @@ msgstr "Ətraflı"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Əvvəlki"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Sonrakı ->"
@@ -6323,7 +6397,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Dairəvi bağlama %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Məntiqi ciltləri birinci olaraq sil\n"
@@ -6461,15 +6535,15 @@ msgstr "heç biri"
msgid "No mouse"
msgstr "Siçansızs"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Siçanınızı işə salmaq üçün,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "TƏKƏRİ OYNADIN!"
@@ -6505,11 +6579,11 @@ msgstr "Ağacı Qapat"
msgid "Toggle between flat and group sorted"
msgstr "Otaq və grup sıralaması arasında gəz"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "İnternetə bağlan"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6519,23 +6593,19 @@ msgstr ""
"Bəzi bağlantılar pptp istifadə edir, çox azı isə dhcp işlədir.\n"
"Bilmirsiniz isə 'pppop istifadə et'i seçin"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "dhcp istifadə et"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "pppoe istifadə et"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "pptpe istifadə et"
@@ -6637,7 +6707,7 @@ msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
msgid "no network card found"
msgstr "şəbəkə kartı tapılmadı"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Şəbəkə Qurğuları"
@@ -6652,15 +6722,15 @@ msgstr ""
"Məsələn``kompüteradı.sahəadı.com''.\n"
"Əgə şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Ev sahibi adı"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Şəbəkə Quraşdırılması Sehirbazı"
@@ -6700,8 +6770,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN quraşdırılması"
@@ -6741,23 +6811,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Hansı növ kartınız var?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Bilmirəm"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6770,19 +6845,19 @@ msgstr ""
"\n"
"PCMCIA kartınız var isə kartınızın irq və ya io'sunu bilməlisiniz.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Dayandır"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Davam et"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Hansısı sizin ISDN kartınızdır?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6790,7 +6865,7 @@ msgstr ""
"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik sonrakı ekrandakı "
"kartlardan birini seçin."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Heç bir ISDN PCI kart tapılmaı. Sonrakı ekrandakılardan seçin."
@@ -6842,7 +6917,7 @@ msgstr "Birinci DNS Vericisi (arzuya görə)"
msgid "Second DNS Server (optional)"
msgstr "İkinci DNS Vericisi (arzuya görə)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6851,7 +6926,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6859,11 +6934,11 @@ msgstr ""
"\n"
"Bağlantınızı yenidən quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Artıq İnternetə bağlısınız."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6871,28 +6946,28 @@ msgstr ""
"\n"
"İstəsəniz İnternetə bağlana bilərsiniz ya da yeniden quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Hələ İnternetə bağlı deyilsiniz."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Bağlan"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Bağlantını kəs"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Şəbəkəni qur"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "İnternet bağlantısı & quraşdırılması"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
@@ -6900,7 +6975,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6915,12 +6990,12 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6931,7 +7006,7 @@ msgstr ""
"Şəbəkə/İnternet bağlantınızı yenidən quraşdırmaq üçün Oldu'ya yoxsa Ləğv "
"et'ə basın.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6943,99 +7018,99 @@ msgstr ""
"İnternet/Şəbəkə qurğularınızı edəcəyik.\n"
"Avtomatik təsbit istəmirsiniz isə işarəti qaldırın.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Qurulacaq profili seçin"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Usta Modu"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Avadanlıqlar tanınır..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normal modem təsbiti"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "%s qapısında tapıldı"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN Bağlantısı"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s tapıldı"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "%s ara üzündə tapıldı"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "eternet kart tapıldı"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7046,7 +7121,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7056,7 +7131,7 @@ msgstr ""
"\n"
"Qurğular indi sisteminizə əlavə ediləcək.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7064,14 +7139,14 @@ msgstr ""
"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
"verici adı xəsarətləri meydana gələ bilər."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7083,50 +7158,50 @@ msgstr ""
"OLDU ya basın.\n"
"Aşağıdakı girişləri düzəltməniz özünü əvvəlki qurğuların üstünə yazacaqdır."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr "Xahiş edirik bu kompüter üçün IP qurğularını girin"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "%s şəbəkə avadanlığı qurulur"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (sürücü %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ünvanı"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Avtomatlaşdırılmış IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Açılışda başladılır"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7137,42 +7212,53 @@ msgstr ""
"Məsələn``kompüteradı.sahəadı.com''.\n"
"Əgər şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Keçit avadanlığı"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Vəkil vericilər quraşdırılması"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP vəkil verici"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP vəkil verici"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Vəkil verici http://... şəklində olmalıdır."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Vəkil verici ftp://... olmalıdır."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Vəkil verici http://... şəklində olmalıdır."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8571,7 +8657,7 @@ msgstr "Şəbəkə dayandırılır"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9082,11 +9168,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Vəkil verici http://... şəklində olmalıdır."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9136,6 +9217,43 @@ msgstr "mkraid iflas etdi (raidtools əksik ola bilər mi?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Əsas)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA səs sistemini (Advanced Linux Sound Architecture) başlat"
@@ -9447,7 +9565,7 @@ msgstr "İnternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -9543,7 +9661,7 @@ msgstr "İnternetə bağlan"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9590,7 +9708,7 @@ msgstr "Şəbəkə ara üzü"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9615,7 +9733,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9631,7 +9749,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9646,7 +9764,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9695,8 +9813,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9733,11 +9851,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "%s paketi qurulur"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "\"%s\"a(ə) təkrar girin və dəyişiklikləri fəallaşdırın"
@@ -9785,17 +9903,6 @@ msgstr "İstifadəçini əlavə et"
msgid "Add/Del Clients"
msgstr "DHCP Alıcısı"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Yardım"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9848,53 +9955,68 @@ msgstr "İstifadəçini əlavə et"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP Alıcısı"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Quraşdırılır..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "yenidən quraşdır"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Disket sürücü yoxdur"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10018,13 +10140,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Qapıları sına"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10033,41 +10155,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "%s açıla bilmir: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10078,68 +10200,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10147,923 +10269,925 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "%s faylı oxunurkan xəta oldu"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Fayl seç"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Növ"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Digər"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Ev sahibi adı"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Parol"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Ev sahibi adı:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Xüsusi"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Əvvəlki"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11095,7 +11219,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11104,7 +11228,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11145,7 +11269,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11173,17 +11297,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11200,7 +11324,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11240,7 +11364,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11251,7 +11375,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11264,7 +11388,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11346,8 +11470,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsol Vasitələri"
@@ -11423,28 +11547,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Qapı"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Qurulumdan çıx"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
@@ -11545,10 +11669,6 @@ msgstr "Sehirbaz..."
msgid "Apply"
msgstr "Əlavə Et"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Bağlandı"
@@ -11668,7 +11788,7 @@ msgstr "Modul adı"
msgid "Size"
msgstr "Böyüklük"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11733,12 +11853,12 @@ msgstr "Nəticə"
msgid "Build the disk"
msgstr "Diski yarat"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "%s avadanlığında medya olduğundan əmin olun"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11747,12 +11867,12 @@ msgstr ""
"%s avadanlığında medya yoxdur.\n"
"Xahiş edirik. birini taxın."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Fork edilə bilmir: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12236,157 +12356,157 @@ msgstr ""
"\n"
"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "İş qrupu"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "bölmə %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Sil"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Qurtardı"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Modul əlavə et"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Çap Edicisiz"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Növbəni sil"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "İstifadəçini qəbul et"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Buraxılış: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Qapı"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Avtomatik təsbit işlət"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Avtomatik təsbit işlət"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Paket seçkilərini saxla"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "İş qrupu"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Bağlı deyil"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12398,137 +12518,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "açılış disketi yaradılması"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Rezolyusiya"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Monitorunuzu seçin"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Paylaşdırma adı"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Qurulum sonrası qurğular"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Çıx"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Sistemi qur"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Xidmətləri qur"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "avadanlıq"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "avadanlıq"
+msgid "Save theme"
+msgstr "Sistemi qur"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Monitorunuzu seçin"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Çap Edici Bağlantısı"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Avadanlıqlar tanınır..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12669,6 +12799,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "istifadə qaydası: keyboarddrake [--expert] [klavatura]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "istifadə qaydası: keyboarddrake [--expert] [klavatura]\n"
@@ -12697,11 +12834,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Təkmilləşdirmə işi başlaya bilmir !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12982,16 +13119,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13067,7 +13201,7 @@ msgstr "Sistemi qur"
msgid "Exit install"
msgstr "Qurulumdan çıx"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -13313,6 +13447,21 @@ msgstr "Multimedya - CD Yandırma"
msgid "Scientific Workstation"
msgstr "Elmi iş stansiyası"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Qurulum sonrası qurğular"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Vəkil verici ftp://... olmalıdır."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Çıx"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (köhnə BIOSlarda işləməz)"
@@ -13565,9 +13714,6 @@ msgstr "Elmi iş stansiyası"
#~ msgid "Test again"
#~ msgstr "Yenidən sına"
-#~ msgid "Setting security level"
-#~ msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ekran kartınızı seçin"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 3c41b2038..8a9393b7f 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: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -88,24 +88,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "i "
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr " XFree86 %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s 3D-"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -114,19 +114,19 @@ msgstr ""
" 3D- XFree %s.\n"
"XFree %s 2D- ."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
" i 3D-, i i XFree %"
"s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s 3D-"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"I '. i i XFree %s, i\n"
" i 2D-."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,12 +150,12 @@ msgstr ""
" , I I \n"
"I '."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr " "
@@ -176,32 +176,32 @@ msgstr " "
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "i"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr ""
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr ""
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -299,25 +299,25 @@ msgstr " i ii "
msgid "Graphics card: %s"
msgstr "i: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr ""
@@ -394,11 +394,11 @@ msgstr " XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr " XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr " X i"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -407,7 +407,7 @@ msgstr ""
" i i X i.\n"
", X ?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -419,7 +419,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "i ISDN ?"
@@ -493,7 +493,7 @@ msgstr ""
msgid "compact"
msgstr ""
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "i-"
@@ -501,17 +501,17 @@ msgstr "i-"
msgid "Delay before booting default image"
msgstr " "
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr ""
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr " "
@@ -546,14 +546,14 @@ msgid ""
msgstr ""
" `` '' "
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr " "
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "i "
@@ -591,7 +591,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -599,158 +599,158 @@ msgstr ""
" .\n"
" , i i."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr ""
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr ""
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
#, fuzzy
msgid "Modify"
msgstr "i RAID"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "i ?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "I (SunOS,...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "I (MacOS,...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "I (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr ""
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr ""
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "-i"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "i"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr ""
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr ""
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr " "
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "i i"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr " "
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr " i swap"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr " "
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr " %s %s i"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "i i?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "i %s i?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr ""
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr ""
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr ". i "
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr " %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "( %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -761,17 +761,17 @@ msgstr ""
"i - ``i= i2=2 ...''.\n"
", ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "i :"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "i %s ?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -788,15 +788,15 @@ msgstr ""
" ii? , i \n"
" ', i ."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr ""
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr " "
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -805,64 +805,64 @@ msgstr ""
" %s .\n"
" ii i?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "( %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr " "
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "i , i i i"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"I i i i i ii i, \n"
"i, `-' i `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr " i i "
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr " i i "
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr " i"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -871,32 +871,32 @@ msgstr ""
"i i i\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr " i"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr " i"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "I i:"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr ":"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "i"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr " i"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -905,57 +905,57 @@ msgstr ""
" i i i \n"
" i. i , ii \"\"."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr " i:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr " :"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "i , ."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr " , i "
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr ""
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr " i"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr ""
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr " "
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -964,42 +964,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr " Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr " "
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "i"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "i"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "i"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1011,7 +1011,7 @@ msgstr ""
" , i i i Internet. "
"."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1019,7 +1019,7 @@ msgstr ""
" , ' i \n"
" ."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1029,13 +1029,13 @@ msgstr ""
"i Internet i i. i\n"
"i."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1049,7 +1049,7 @@ msgstr ""
". i i \n"
", i i iii ii."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1058,36 +1058,36 @@ msgstr ""
" ii 4 , i .\n"
" i i."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "i"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr " i"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "i i"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr " i "
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1095,7 +1095,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1107,58 +1107,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr " /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr " "
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr " "
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr " ?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1216,130 +1216,130 @@ msgstr " "
msgid "Yaboot mode"
msgstr " "
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr " i"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr " "
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr ""
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr " XFree86 %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr " "
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr " I-"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr " X Window"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "i "
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
#, fuzzy
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1348,44 +1348,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1489,53 +1489,61 @@ msgstr ""
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "i"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "i"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
#, fuzzy
msgid "Server"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr " i"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr " , ."
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr ""
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr " i:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "i: %s"
@@ -1624,7 +1632,7 @@ msgstr ""
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr ""
@@ -1776,7 +1784,7 @@ msgstr ""
"i i \n"
" ?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "!"
@@ -2335,7 +2343,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "I i:"
@@ -2350,23 +2358,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "DNS "
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr " %s %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr " i %s: %s"
@@ -2458,46 +2466,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr " %s i: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr ""
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr ""
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr " i"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "i , "
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2624,7 +2696,8 @@ msgid "/_Quit"
msgstr ""
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr ""
@@ -2643,76 +2716,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "i"
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr " "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr ". i "
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "I"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr " "
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr " i %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "i , "
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr " CUPS"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d "
@@ -3972,7 +4046,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3987,7 +4061,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3996,31 +4070,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr " broadcast NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr " %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr " %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4268,7 +4342,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr " "
@@ -4299,11 +4373,11 @@ msgstr " "
msgid "Please choose one of the following classes of installation:"
msgstr "i , i :"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "i "
@@ -4380,7 +4454,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "븢"
@@ -4403,7 +4477,7 @@ msgstr "i i"
msgid "Choose the packages you want to install"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "븢"
@@ -4431,17 +4505,17 @@ msgid "Installing package %s"
msgstr " %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr ""
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4458,16 +4532,16 @@ msgstr ""
"Cd."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr " ?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr " :"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr " :"
@@ -4564,7 +4638,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4642,7 +4716,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "i"
@@ -4855,31 +4929,31 @@ msgstr " %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4889,16 +4963,16 @@ msgstr ""
"i i CD , ii i.\n"
"i CD , i i i ii ."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4907,21 +4981,21 @@ msgstr ""
" %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4999,7 +5073,7 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5011,169 +5085,169 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr " i "
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr " i "
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "i ?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr " i ii GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS :"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr " CUPS"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
#, fuzzy
msgid "No printer"
msgstr "I i"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "i i?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
#, fuzzy
msgid "Mouse"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "ISDN card"
msgstr " ISDN "
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
#, fuzzy
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr " NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr " root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
" ( i %d i)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "i NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS :"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5189,22 +5263,22 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "I "
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Domain Admin Password"
msgstr "i "
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5231,19 +5305,19 @@ msgstr ""
"i , \n"
" i ii \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "i "
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5269,7 +5343,7 @@ msgstr ""
" ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5278,28 +5352,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr ", "
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr " , i "
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5307,11 +5381,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr " aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5319,16 +5393,16 @@ msgstr ""
" boot, \n"
" 븢, ?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr " . i :"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5339,17 +5413,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5358,7 +5432,7 @@ msgstr ""
" i .\n"
" i ?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5390,16 +5464,16 @@ msgstr ""
"I i -\n"
" i i i Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
#, fuzzy
msgid "Generate auto install floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5408,16 +5482,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
#, fuzzy
msgid "Replay"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
#, fuzzy
msgid "Save packages selection"
msgstr "i "
@@ -5455,14 +5529,14 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr ""
@@ -5919,7 +5993,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "i %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -6060,16 +6134,16 @@ msgstr ""
msgid "No mouse"
msgstr " "
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr " , ."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
#, fuzzy
msgid "To activate the mouse,"
msgstr " , ."
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr " !"
@@ -6106,34 +6180,30 @@ msgstr " "
msgid "Toggle between flat and group sorted"
msgstr " i i "
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr " I"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr " pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
#, fuzzy
msgid "use pptp"
msgstr " pppoe"
@@ -6233,7 +6303,7 @@ msgstr ""
msgid "no network card found"
msgstr " "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr " i"
@@ -6249,15 +6319,15 @@ msgstr ""
" ``mybox.mylab.myco.com''.\n"
" i IP , i ."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "I "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "i i"
@@ -6299,8 +6369,8 @@ msgid "Old configuration (isdn4net)"
msgstr " (firewall)!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr " ISDN"
@@ -6339,23 +6409,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "i ?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "i ?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr " "
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6369,19 +6444,19 @@ msgstr ""
"\n"
"i PCMCIA , i irq i io .\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "i"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr ""
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr " ISDN ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6389,7 +6464,7 @@ msgstr ""
" ISDN PCI , . i , PCI "
" ."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr " ISDN PCI . i , ."
@@ -6443,7 +6518,7 @@ msgstr " DNS"
msgid "Second DNS Server (optional)"
msgstr "i DNS:"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6451,7 +6526,7 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
@@ -6460,12 +6535,12 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
#, fuzzy
msgid "You are currently connected to internet."
msgstr " I?"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
@@ -6474,38 +6549,38 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr " I?"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "I "
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr " ISDN"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr " i"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "I i i"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6519,12 +6594,12 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "i i"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6532,7 +6607,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6540,105 +6615,105 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
#, fuzzy
msgid "Choose the profile to configure"
msgstr " i:"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
#, fuzzy
msgid "Expert Mode"
msgstr ""
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr " ..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy, c-format
msgid "detected on port %s"
msgstr " i %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, fuzzy
msgid "ISDN connection"
msgstr " ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr " i"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "Cable connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr " "
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "LAN connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr " i, i "
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr " I-"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr " , ?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
#, fuzzy
msgid "Network configuration"
msgstr "i i"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6646,27 +6721,27 @@ msgid ""
"%s"
msgstr "i i i?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6674,7 +6749,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6684,43 +6759,43 @@ msgstr ""
" i IP - \n"
"i (, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr " %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, fuzzy, c-format
msgid " (driver %s)"
msgstr " XFree86: %s\n"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP "
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr " i"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr " IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr " . "
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP i 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6732,42 +6807,53 @@ msgstr ""
" ``mybox.mylab.myco.com''.\n"
" i IP , i ."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS "
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "-"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP i 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP i 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr " proxy "
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy i http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy i ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Proxy i http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8166,7 +8252,7 @@ msgstr " i"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8679,11 +8765,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Proxy i http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8733,6 +8814,43 @@ msgstr "mkraid ( raid i?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr " RAID %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "i i"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "i i"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "i lpd"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ? ( %s) "
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "i i"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr " "
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9031,7 +9149,7 @@ msgstr "i"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -9128,7 +9246,7 @@ msgstr " I"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9175,7 +9293,7 @@ msgstr " i"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9200,7 +9318,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9216,7 +9334,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9231,7 +9349,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9280,8 +9398,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9318,11 +9436,11 @@ msgstr ""
msgid "Installing packages..."
msgstr " %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "i , i, Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "i , i %s i "
@@ -9370,16 +9488,6 @@ msgstr " i"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr ""
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9432,52 +9540,67 @@ msgstr " i"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr " IDE"
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr " i"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr " X Window"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr " %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr " "
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9601,13 +9724,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr " "
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9616,41 +9739,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr " "
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr " %s i: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9661,68 +9784,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9730,926 +9853,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr " %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr " "
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr " "
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "i "
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "i Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "I i:"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr " , ."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr " "
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr " "
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr " "
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "i , i."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr " "
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr " "
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr " "
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr " "
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr " "
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr " "
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr " "
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr " "
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr " "
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr " , ."
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr ":"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr ": "
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "I i:"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr " "
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr " "
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "i :"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "i i"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
#, fuzzy
msgid "across Network"
msgstr ":"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
#, fuzzy
msgid "on Tape Device"
msgstr " "
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr ". i"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr ": %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "i"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
#, fuzzy
msgid "\t-Tape \n"
msgstr ": "
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr " ?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "i i"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr " , ."
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr ""
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr " "
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr " "
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr ""
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr " i"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr " "
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "i "
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr " "
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr " "
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr " i "
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "i "
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "I "
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "I i:"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "I "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr " "
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr " i "
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr " "
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr " "
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr " i"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr " "
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "i i"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "i i"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr " i"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr ". i"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10681,7 +10806,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10690,7 +10815,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10731,7 +10856,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10759,17 +10884,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10786,7 +10911,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10826,7 +10951,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10837,7 +10962,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10850,7 +10975,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10932,8 +11057,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr " "
@@ -11010,28 +11135,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr ""
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr " "
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr " , i "
@@ -11140,11 +11265,6 @@ msgstr " ..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr " i"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -11268,7 +11388,7 @@ msgstr "i :"
msgid "Size"
msgstr ": %s"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
#, fuzzy
msgid "drakfloppy"
msgstr " "
@@ -11342,24 +11462,24 @@ msgstr ""
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "i "
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11835,156 +11955,156 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr " I-"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr " "
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr " %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "I i:"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "i"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
#, fuzzy
msgid "edit"
msgstr "i"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr ""
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr " i"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "I i"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "i "
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr " i"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "i: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr ""
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "i "
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "I i:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr " "
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr ""
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11996,137 +12116,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr " "
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr " "
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr " "
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "I "
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr " "
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr " i"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr " "
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "i i (loopback)"
+msgid "Preview"
+msgstr ""
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr ""
+msgid "Save theme"
+msgstr " i"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr " i"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr " "
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "URI "
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr " ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12267,6 +12397,12 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
@@ -12301,11 +12437,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr " live upgrade !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr ""
@@ -12584,16 +12720,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12670,7 +12803,7 @@ msgstr " i"
msgid "Exit install"
msgstr " "
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12934,6 +13067,21 @@ msgstr " - CD"
msgid "Scientific Workstation"
msgstr " "
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr " "
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "i i (loopback)"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy i ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr ""
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA ( i BIOS)"
@@ -13021,9 +13169,6 @@ msgstr " "
#~ msgid "Test again"
#~ msgstr " "
-#~ msgid "Setting security level"
-#~ msgstr "i i"
-
#~ msgid "Select a graphics card"
#~ msgstr " i"
@@ -13176,9 +13321,6 @@ msgstr " "
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr " (%s), \n"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? ( %s) "
-
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr " ? ( %s. i `none' i) "
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index e7d19aece..5b0c95b11 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-02-28 20:56+0200\n"
"Last-Translator: Bozhan Boiadzhiev <bozhan@plov.omega.bg>\n"
"Language-Team: Bulgarian\n"
@@ -89,24 +89,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr " Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr " \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s 3D "
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
" XFree %s, - "
"2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr " 3D XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s O 3D "
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
" XFree %s, - "
"2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,12 +151,12 @@ msgstr ""
", "
"."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac ( )"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr ""
@@ -177,32 +177,32 @@ msgstr " "
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr ""
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr ""
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -301,25 +301,25 @@ msgstr " "
msgid "Graphics card: %s"
msgstr " : %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr ""
@@ -397,11 +397,11 @@ msgstr "XFree86 : %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 : %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X "
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -410,7 +410,7 @@ msgstr ""
"K , X .\n"
" X , ?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr " ISDN ?"
@@ -495,7 +495,7 @@ msgstr ""
msgid "compact"
msgstr ""
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr " "
@@ -503,17 +503,17 @@ msgstr " "
msgid "Delay before booting default image"
msgstr " default "
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr ""
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr " ()"
@@ -547,14 +547,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr " `` '' "
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr ", "
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr " "
@@ -591,7 +591,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -599,156 +599,156 @@ msgstr ""
" .\n"
" ."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr ""
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr ""
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr ""
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr " "
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr " (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr " (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr " (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr ""
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr ""
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr ""
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "-"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr ""
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr ""
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr ""
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr " "
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr " "
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr " "
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr " "
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr " swap-"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr " "
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr " %s %s "
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr " () ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr " %s ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr ""
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr ""
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr " "
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr " %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "( %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -759,17 +759,17 @@ msgstr ""
" ``= 2=2 ...''.\n"
": ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr " :"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr " %s ?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -788,15 +788,15 @@ msgstr ""
" ? , "
" ."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr " "
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr " "
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -805,63 +805,63 @@ msgstr ""
" %s .\n"
" ?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "( %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr " "
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr ", "
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
" , , `-' `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr " "
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr " "
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr " "
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -870,32 +870,32 @@ msgstr ""
" \n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr " "
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr " "
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr " "
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr ""
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -904,59 +904,59 @@ msgstr ""
".\n"
" ?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr " :"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr " Windows Manager :"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr ", ."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr " , "
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr ""
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr " "
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr " "
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
" \n"
" , ?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -965,42 +965,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr " Cracker-"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr ""
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr ""
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr ""
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr ""
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1010,7 +1010,7 @@ msgstr ""
", -: \n"
" . ."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1018,7 +1018,7 @@ msgstr ""
" , "
"."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1028,13 +1028,13 @@ msgstr ""
" . "
". "
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1049,7 +1049,7 @@ msgstr ""
" \n"
" . "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1058,36 +1058,36 @@ msgstr ""
" 4- , .\n"
" ."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr ""
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr " "
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr " "
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr " libsafe "
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
", a "
"."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1100,7 +1100,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1125,7 +1125,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1139,7 +1139,7 @@ msgstr "Welcome to GRUB the operating system chooser!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
@@ -1154,7 +1154,7 @@ msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1168,7 +1168,7 @@ msgstr "Press enter to boot the selected OS, 'e' to edit the"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1182,33 +1182,33 @@ msgstr "commands before booting, or 'c' for a command-line."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr " /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr " "
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr " bootloader %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr " .\n"
@@ -1260,106 +1260,106 @@ msgstr " Lilo/grub"
msgid "Yaboot mode"
msgstr " Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr " "
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr " "
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr ""
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr " %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr " "
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr " "
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1368,22 +1368,22 @@ msgstr ""
" %s .\n"
" , ."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr ""
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr " "
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1392,44 +1392,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr " "
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr " X-Window "
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ", autologin"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ", autologin (, )"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr " /etc/inittab : %s"
@@ -1534,53 +1534,61 @@ msgstr ""
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr " "
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr ", "
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr ""
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr " : "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr ": %s"
@@ -1669,7 +1677,7 @@ msgstr ""
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr ""
@@ -1812,7 +1820,7 @@ msgstr ""
" \n"
" ?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr ""
@@ -2371,7 +2379,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr " "
@@ -2386,23 +2394,23 @@ msgstr "NIS "
msgid "Search servers"
msgstr "DNS "
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s "
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr " %s %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr " %s: %s"
@@ -2489,47 +2497,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr " %s : %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr ""
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr ""
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr ", ... "
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr " "
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr " "
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2655,7 +2727,8 @@ msgid "/_Quit"
msgstr ""
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_"
@@ -2675,76 +2748,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_ "
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "//_..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr " "
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr " "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr " "
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr " "
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr " "
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr " %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr " "
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr " \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d "
@@ -4402,7 +4476,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4426,7 +4500,7 @@ msgstr ""
"\n"
" ?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4435,20 +4509,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr " broadcast NIS "
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr " FAT %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr " FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4456,12 +4530,12 @@ msgstr ""
" , ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr " %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4705,7 +4779,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr " %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr " "
@@ -4736,11 +4810,11 @@ msgstr " "
msgid "Please choose one of the following classes of installation:"
msgstr ", :"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr " "
@@ -4818,7 +4892,7 @@ msgstr " "
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr ""
@@ -4838,7 +4912,7 @@ msgstr " "
msgid "Choose the packages you want to install"
msgstr " , "
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr ""
@@ -4865,17 +4939,17 @@ msgid "Installing package %s"
msgstr " %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr ""
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4892,16 +4966,16 @@ msgstr ""
"ROM."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr " ?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr " :"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr " :"
@@ -5027,7 +5101,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5223,7 +5297,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr ""
@@ -5435,31 +5509,31 @@ msgstr " "
msgid "Selected size is larger than available space"
msgstr " - "
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5469,16 +5543,16 @@ msgstr ""
" CD-, .\n"
" CD-, , Ok. "
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5487,21 +5561,21 @@ msgstr ""
" %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5567,7 +5641,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5579,157 +5653,157 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr " , "
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr " ?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr " GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr " ( NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP "
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr " CUPS "
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr " () ?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN "
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV "
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr " root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr " ( %d )"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP "
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP "
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5745,21 +5819,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP "
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5788,19 +5862,19 @@ msgstr ""
" bootdisk , \n"
" \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5826,7 +5900,7 @@ msgstr ""
" . bootdisk ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5835,28 +5909,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr " , "
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr " bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5868,11 +5942,11 @@ msgstr ""
" , \n"
" BootX, "
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr " aboot ?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5880,15 +5954,15 @@ msgstr ""
" aboot, \n"
" , ?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr " bootloader"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr " bootloader . :"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5905,17 +5979,17 @@ msgstr ""
" : shut-down\n"
" ."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5925,7 +5999,7 @@ msgstr ""
"\n"
" ?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5957,15 +6031,15 @@ msgstr ""
" \n"
" Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5979,15 +6053,15 @@ msgstr ""
"\n"
" .\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr " "
@@ -6023,14 +6097,14 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- "
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr ""
@@ -6478,7 +6552,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "\" \" : %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr " \n"
@@ -6616,15 +6690,15 @@ msgstr ""
msgid "No mouse"
msgstr " "
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr ", "
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr " ,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr " !"
@@ -6661,11 +6735,11 @@ msgstr " "
msgid "Toggle between flat and group sorted"
msgstr " "
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr " "
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6675,23 +6749,19 @@ msgstr ""
" PPTP, ma DHCP.\n"
" , ' PPPOE'."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr " DHCP"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr " PPPOE"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr " PPPTP"
@@ -6792,7 +6862,7 @@ msgstr ", "
msgid "no network card found"
msgstr " "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr " "
@@ -6808,15 +6878,15 @@ msgstr ""
"Host ,\n"
" ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr " :"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr " "
@@ -6863,8 +6933,8 @@ msgid "Old configuration (isdn4net)"
msgstr " (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr " IDSN"
@@ -6900,23 +6970,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr " ?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr " ?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr " "
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6929,19 +7004,19 @@ msgstr ""
"\n"
" PCMCIA , IRC IO .\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr ""
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr " ISDN ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6949,7 +7024,7 @@ msgstr ""
" ISDN PCI , . PCI "
" ."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr " ISDN PCI . ."
@@ -7001,7 +7076,7 @@ msgstr " DNS ( )"
msgid "Second DNS Server (optional)"
msgstr " DNS ( )"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7009,7 +7084,7 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7017,11 +7092,11 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr " "
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7029,33 +7104,33 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr " "
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr ""
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr ""
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr " %s ."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7073,12 +7148,12 @@ msgstr ""
"\n"
" OK, ."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7089,7 +7164,7 @@ msgstr ""
" Ok, , , "
" .\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7101,72 +7176,72 @@ msgstr ""
" / .\n"
" , .\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr " "
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr " "
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr " "
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr " ..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN "
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL "
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr " "
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN "
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet "
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr " , "
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7176,23 +7251,23 @@ msgstr ""
" , .\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr " ?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr " "
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7203,7 +7278,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7213,7 +7288,7 @@ msgstr ""
"\n"
" .\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7221,14 +7296,14 @@ msgstr ""
" , X\n"
" , ."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7239,7 +7314,7 @@ msgstr ""
" , .\n"
" - ."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7249,43 +7324,43 @@ msgstr ""
" IP \n"
" - (, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr " %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " ( %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP "
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr " "
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr " IP "
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr " "
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7297,42 +7372,53 @@ msgstr ""
" ``mybox.mylab.myco.com''.\n"
" IP gateway, "
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS "
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway "
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr " proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr " ID ( )"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy- http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy- ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URL 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8779,7 +8865,7 @@ msgstr " \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9313,11 +9399,6 @@ msgstr ""
", FTP proxy.\n"
" , FTP proxy."
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "URL 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9365,6 +9446,43 @@ msgstr "mkraid ( raidtools ?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr " RAID %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr " "
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr " "
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr " "
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ( )"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr " "
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr ", , "
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr " ALSA (Advanced Linux Sound Architecture) "
@@ -9671,7 +9789,7 @@ msgstr ""
msgid "File sharing"
msgstr " "
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr ""
@@ -9763,7 +9881,7 @@ msgstr " "
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9810,7 +9928,7 @@ msgstr " "
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9835,7 +9953,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9851,7 +9969,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9866,7 +9984,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9915,8 +10033,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9952,11 +10070,11 @@ msgstr ""
msgid "Installing packages..."
msgstr " ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr " Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr " %s, "
@@ -10004,17 +10122,6 @@ msgstr " "
msgid "Add/Del Clients"
msgstr "DHCP "
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10067,53 +10174,68 @@ msgstr " "
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP "
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr " ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr ""
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr " %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr " "
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10238,13 +10360,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr " "
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10253,41 +10375,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr " "
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr " %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10298,68 +10420,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10367,926 +10489,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr " %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr " "
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr " "
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr " Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr ", "
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr ", "
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr ", "
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr " "
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr ", ."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr ", "
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr ", "
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr ", "
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr ", "
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr ", "
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr " "
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr ", "
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr " "
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr ""
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr " "
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr " "
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr " :"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr " "
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr " "
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr " : %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr " "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr ", ."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr ", "
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN "
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr " "
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr " "
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr ", ."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr ""
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr " "
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr " "
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr ", ."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr " "
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr " "
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr " "
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr " "
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr " "
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr " :"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr " "
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr " :"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr " "
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr ""
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr " "
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr " "
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- "
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr ""
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr " "
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr " "
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr " "
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr " "
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr " "
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr " "
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11318,7 +11442,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11327,7 +11451,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11368,7 +11492,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11396,17 +11520,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11423,7 +11547,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11463,7 +11587,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11474,7 +11598,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11487,7 +11611,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11569,8 +11693,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr " "
@@ -11646,28 +11770,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr ""
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr " "
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr " , "
@@ -11768,10 +11892,6 @@ msgstr "..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr ", ... "
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr ""
@@ -11889,7 +12009,7 @@ msgstr " "
msgid "Size"
msgstr ""
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11954,12 +12074,12 @@ msgstr ""
msgid "Build the disk"
msgstr " "
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr " %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11968,12 +12088,12 @@ msgstr ""
" %s.\n"
" ."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr " : %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12460,157 +12580,157 @@ msgstr ""
"\n"
" ``'', ."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr " "
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr " %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr " "
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr ""
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr ""
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr " "
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr " "
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr " "
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr " "
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr ": %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr ""
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr " "
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr " "
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr " "
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr " "
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr " "
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr " "
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12622,137 +12742,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr " "
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr " "
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr " "
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr " "
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr " "
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr " "
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr " "
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr ""
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr ""
+msgid "Save theme"
+msgstr " "
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr " "
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr " "
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr " URI "
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr " ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12893,6 +13023,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ": keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ": keyboarddrake [--expert] [keyboard]\n"
@@ -12923,11 +13060,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr " !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr ""
@@ -13211,16 +13348,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13296,7 +13430,7 @@ msgstr " "
msgid "Exit install"
msgstr " "
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13543,6 +13677,21 @@ msgstr " - CD"
msgid "Scientific Workstation"
msgstr " "
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr " "
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy- ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr ""
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -13831,9 +13980,6 @@ msgstr " "
#~ msgid "Test again"
#~ msgstr " "
-#~ msgid "Setting security level"
-#~ msgstr " "
-
#~ msgid "Select a graphics card"
#~ msgstr " "
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index e778cf6b3..f8d39e598 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-08-21 17:14GMT\n"
"Last-Translator: Amila Akagić <bono@lugbih.org>\n"
"Language-Team: Bosnian <lokal-subscribe@lugbih.org>\n"
@@ -89,24 +89,24 @@ msgstr "Konfiguriši sve glave odvojeno"
msgid "Use Xinerama extension"
msgstr "Koristi Xinerama ekstenziju"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfiguriši samo karticu \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -115,17 +115,17 @@ msgstr ""
"Vaša kartica može imati podršku za 3D hardversko ubrzanje ali samo sa\n"
"XFree %s. Vašu karticu podržava XFree %s koji može imati bolju podršku za 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR.\n"
"Vašu karticu podržava XFree %s koji može imati bolju podršku za 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,12 +145,12 @@ msgstr ""
"Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s,\n"
"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Ručno izaberi"
@@ -171,32 +171,32 @@ msgstr "Rezolucija"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Izlaz"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -292,25 +292,25 @@ msgstr "Izaberite rezoluciju i dubinu boja"
msgid "Graphics card: %s"
msgstr "Grafička karta: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Odustani"
@@ -387,11 +387,11 @@ msgstr "XFree86 server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 drajver: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X u startanju"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -400,7 +400,7 @@ msgstr ""
"Mogu podesiti vaš računar da automatski pokrene X nakon boota.\n"
"Želite li da se X pokrene kada bootate?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,7 +412,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Koje je vrste vaša ISDN konekcija?"
@@ -485,7 +485,7 @@ msgstr "Kompaktno"
msgid "compact"
msgstr "kompaktno"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Video mod"
@@ -493,17 +493,17 @@ msgstr "Video mod"
msgid "Delay before booting default image"
msgstr "Čekanje prije bootanja default preslike"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Šifra"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Šifra (ponovo)"
@@ -537,14 +537,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez šifre"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Molimo pokušajte ponovo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Šifre se ne poklapaju"
@@ -581,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -589,148 +589,148 @@ msgstr ""
"Navedene su razne stavke.\n"
"Možete dodati nove ili promjeniti postojeće."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Gotovo"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Izmjeni"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu stavke želite dodati?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Ostali OSi (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Ostali OSi (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Ostali OSi (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Preslika"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Čitaj-piši"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabela"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Labela"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Default"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-veličina"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Ukloni stavku"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Prazna labela nije dozvoljena"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Morate navesti image kernela"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Morate navesti root particiju"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Ova labela je već u upotrebi"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronađeno %s %s interfejsa"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Imate li neki drugi?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Imate li ijedan %s interfejs?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Pogledaj hardware info"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram drajver za %s karticu %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, fuzzy, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -739,7 +739,7 @@ msgstr ""
"Sada možete navesti opcije za modul %s.\n"
"Obratite pažnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -750,17 +750,17 @@ msgstr ""
"ime2=vrijednost2 ...''.\n"
"Na primjer, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opcije modula"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s drajver ću pokušati?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -777,15 +777,15 @@ msgstr ""
"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti računar,\n"
"ali ne bi trebalo izazvati nikakvu štetu."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Ispitivanje"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Navedi opcije"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -794,64 +794,64 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Želite li probati opet sa drugim parametrima?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Ova šifra je previše jednostavna"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Molimo navedite korisničko ime"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -860,32 +860,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Pravo ime"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -893,54 +893,54 @@ msgstr ""
"Mogu podesiti vaš računar da automatski prijavi jednog korisnika.\n"
"Želite li koristiti ovu mogućnost?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Molimo izaberite jezik koji ćete koristiti."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Možete izabrati i druge jezike koji će biti dostupni nakon instalacije"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Svi"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Možete eksportovati koristeći NFS ili Sambu. Koji želite"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -949,11 +949,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -961,31 +961,31 @@ msgstr ""
"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Dobrodošli u Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Loš"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Viši"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoičan"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -995,7 +995,7 @@ msgstr ""
"ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen na\n"
"druge ili na Internet. Nema pristupa šifrom."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1003,7 +1003,7 @@ msgstr ""
"Šifra je sada aktivirana, ali korištenje za mrežni računar još nije "
"preporučeno."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1011,7 +1011,7 @@ msgstr ""
"Ovo je standardna sigurnost koja je preporučena za računar koji će biti "
"korišten za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1019,7 +1019,7 @@ msgstr ""
"Već postoje određena ograničenja, a više automatskih provjera se pokreće "
"svaku noć."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1035,7 +1035,7 @@ msgstr ""
"konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent na "
"Internetu, možda je bolje da izaberete niži nivo."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1043,35 +1043,35 @@ msgstr ""
"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
"Sigurnosne osobine na maksimumu."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcije"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Izaberite nivo sigurnosti"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Nivo sigurnosti"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za servere"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja brani od napada \"buffer overflow\" i \"format string\"."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1079,7 +1079,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1096,58 +1096,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro došli u GRUB izbornik operativnog sistema!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Koristite tipke %c i %c za izbor jedne od stavki."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite enter za bootanje izabranog OSa, 'e' za editovanje"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandi prije bootanja, ili 'c' za komandnu liniju."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljene stavke će biti bootane automatski za %d sekundi."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "pomoć još nije implementirana.\n"
@@ -1199,106 +1199,106 @@ msgstr "Lilo/grub mod"
msgid "Yaboot mode"
msgstr "Yaboot mod"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Sistem instalacije"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Napravi novu particiju"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Greška"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Kopiram %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NoVideo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Izaberite klasu instalacije"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1307,22 +1307,22 @@ msgstr ""
"Trenutno koristite %s kao boot manager.\n"
"Kliknite na Konfiguriši kako bi se pokrenuo čarobnjak za podešavanje."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfiguriši"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Spasi izbor paketa"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1331,44 +1331,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistem mod"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sistem na startu"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ne, ne želim da se autologiram"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, želim da se autologiram sa ovim (korisnik, desktop)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "U redu"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ne mogu otvoriti /etc/inittab za čitanje: %s"
@@ -1465,53 +1465,61 @@ msgstr "Austrija"
msgid "United States"
msgstr "SAD"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "novi"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Tačka montiranja"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Molim unesite brzinu cd pisača"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Tačka montiranja: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
@@ -1602,7 +1610,7 @@ msgstr "Prazno"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Ostalo"
@@ -1746,7 +1754,7 @@ msgstr ""
"Backup tabela particija nema istu veličinu\n"
"Ipak nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Upozorenje"
@@ -2305,7 +2313,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Korisničko ime"
@@ -2319,23 +2327,23 @@ msgstr "NIS domen"
msgid "Search servers"
msgstr "Traži servere"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ne znam kako formatirati %s tipa %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "greška u demontiranju %s: %s"
@@ -2421,48 +2429,111 @@ msgstr "Nemam šta da radim"
msgid "Error opening %s for writing: %s"
msgstr "Greška u otvaranju %s za pisanje: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Podešavanje CUPSa"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Drajver"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Pomoć"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Molimo sačekajte"
+
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "X drajver"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Nepoznat model"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2589,7 +2660,8 @@ msgid "/_Quit"
msgstr "Izlaz"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Pomoć"
@@ -2609,76 +2681,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Prijavi grešku"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Pomoć/_O programu..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Ispitivanje"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Prepoznavanje hard diska"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Pogledaj hardware info"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Prikaži informacije"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Podešavanje miša"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "detektovan na portu %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Molimo sačekajte"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Uklanjam štampač \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundi"
@@ -4563,7 +4636,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Morate također formatirati i %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4588,7 +4661,7 @@ msgstr ""
"\n"
"Da li zaista želite instalirati ove servere?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4597,20 +4670,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4618,12 +4691,12 @@ msgstr ""
"Da koristite ovaj izbor spašenih paketa, bootajte instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Greška u čitanju datoteke %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4869,7 +4942,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nema pogodne disketne jedinice"
@@ -4899,11 +4972,11 @@ msgstr "Klasa instalacije"
msgid "Please choose one of the following classes of installation:"
msgstr "Molimo izaberite jednu od sljedećih klasa instalacije:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Izbor grupe paketa"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Izbor pojedinačnih paketa"
@@ -4979,7 +5052,7 @@ msgstr "Automatski prikaži izabrane pakete"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalacija"
@@ -4999,7 +5072,7 @@ msgstr "Minimalna instalacija"
msgid "Choose the packages you want to install"
msgstr "Izaberite pakete koje želite instalirati"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instaliram"
@@ -5026,17 +5099,17 @@ msgid "Installing package %s"
msgstr "Instaliram paket %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Prihvati"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5053,16 +5126,16 @@ msgstr ""
"ROMa."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Svejedno nastavi?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Došlo je do greške pri naručivanju paketa:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Došlo je do greške kod instaliranja paketa:"
@@ -5186,7 +5259,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5304,7 +5377,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5381,7 +5454,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatura"
@@ -5590,11 +5663,11 @@ msgstr "Ubacite disketu koja sadrži izbor paketa"
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća od slobodnog prostora"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Vrsta instalacije"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5603,19 +5676,19 @@ msgstr ""
"Niste izabrali nijednu grupu paketa\n"
"Molimo izaberite minimalnu instalaciju koju želite"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Sa X-om"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5625,16 +5698,16 @@ msgstr ""
"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
"Ako nedostaju samo neki CDovi, isključite ih, zatim kliknite na Ok."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM pod oznakom \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5643,21 +5716,21 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Post-instalacijsko podešavanje"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molimo ubacite disketu Update Modula u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5731,7 +5804,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5751,160 +5824,160 @@ msgstr ""
"\n"
"Da li želite instalirati unaprjeđenja ?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web stranicu da bih saznao listu dostupnih mirrora"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardverski sat podešen na GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP server"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS server"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nema štampača"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Imate li ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije kako biste podesili vašu zvučnu "
"karticu"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ukratko"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Miš"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Štampač"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Preuzmi fontove iz Windowsa"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podesite root šifru"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Bez šifre"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autentifikacija NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domen"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS server"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5920,21 +5993,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Ime domena"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5966,19 +6039,19 @@ msgstr ""
"first\n"
"drive and press \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Prva disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Druga disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6004,7 +6077,7 @@ msgstr ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6018,29 +6091,29 @@ msgstr ""
"pravljenje boot diskete na 1.44 Mb disketi vjerovatno neće\n"
"raditi, pošto XFS traži veoma velik drajver)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Žao mi je, nema dostupne disketne jedinice"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Izaberite disketnu jedinicu koju želite koristiti da napravite boot disketu"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Ubacite disketu u %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Pravim boot disketu"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6052,11 +6125,11 @@ msgstr ""
"Instalacija će se nastaviti, ali ćete\n"
" morati koristiti BootX za bootanje vašeg računara"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Da li želite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6064,15 +6137,15 @@ msgstr ""
"Greška u instaliranju aboota, \n"
"da li da pokušam nasilnu instalaciju čak i ako to uništi prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Instaliram bootloadera"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6090,17 +6163,17 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ubacite praznu disketu u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6110,7 +6183,7 @@ msgstr ""
"\n"
"Da li zaista želite izaći sada?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6143,16 +6216,16 @@ msgstr ""
"Informacije o podešavanju vašeg sistema su dostupne u poglavlju\n"
"\"nakon instalacije\" vašeg Zvaničnog Mandrake Linux priručnika za upotrebu."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6166,15 +6239,15 @@ msgstr ""
"\n"
"Možda ćete željeti radije ponoviti instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatizovano"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ponovi"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Spasi izbor paketa"
@@ -6210,14 +6283,14 @@ msgstr "Napredno"
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Prethodni"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Sljedeći"
@@ -6667,7 +6740,7 @@ msgstr "Desna \"Windows\" tipka"
msgid "Circular mounts %s\n"
msgstr "Kružno montiranje %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Najprije ukloni logičke volumene\n"
@@ -6806,15 +6879,15 @@ msgstr "nijedan"
msgid "No mouse"
msgstr "Bez miša"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Molimo testirajte miš"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Da biste aktivirali miša,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "POMJERITE VAŠ KOTAČ!"
@@ -6851,11 +6924,11 @@ msgstr "Smanji stablo"
msgid "Toggle between flat and group sorted"
msgstr "Prekidač između ravnog i grupnog sortiranja"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6865,23 +6938,19 @@ msgstr ""
"Neke konekcije koriste pptp, a vrlo rijetke koriste dhcp.\n"
"Ako ne znate, izaberite 'koristi pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "koristi dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "koristi pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "koristi pptp"
@@ -6983,7 +7052,7 @@ msgstr ""
msgid "no network card found"
msgstr "nije pronađena mrežna kartica"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Podešavam mrežu"
@@ -6999,15 +7068,15 @@ msgstr ""
"Naziv vašeg računara bi trebao biti puno-kvalifikovani naziv,\n"
"kao što je ``mojcomp.mojlab.mojafirma.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Host name"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Čarobnjak za podešavanje mreže"
@@ -7054,8 +7123,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Stara konfiguracija (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Podešavanje ISDNa"
@@ -7091,23 +7160,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Koji protokol želite koristiti?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Koju vrstu kartice imate?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ne znam"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7121,19 +7195,19 @@ msgstr ""
"\n"
"Ako imate PCMCIA karticu, moraćete znati IRQ i IO vaše kartice.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Prekid"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Nastavak"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Koja je vaša ISDN kartica ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7141,7 +7215,7 @@ msgstr ""
"Otkrio sam neku ISDN PCI karticu, ali ne znam tip. Molimo izaberite neku PCI "
"karticu na idućem ekranu."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Nije pronađena nijedna ISDN PCI kartica. Molimo izaberite jednu na idućem "
@@ -7195,7 +7269,7 @@ msgstr "Prvi DNS server (opcionalno)"
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS server (opcionalno)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7203,7 +7277,7 @@ msgstr ""
"\n"
"Možete se diskonektovati ili prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7211,11 +7285,11 @@ msgstr ""
"\n"
"Možete prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7223,32 +7297,32 @@ msgstr ""
"\n"
"Možete se spojiti na Internet ili prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Trenutno niste konektovani na Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konektuj me"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Prekini konekciju"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Podesi konekciju"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internet konekcija & podešavanje"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada ćemo podesiti konekciju %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7267,12 +7341,12 @@ msgstr ""
"\n"
"Pritisnite OK za nastavak."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Podešavanje mreže"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7283,7 +7357,7 @@ msgstr ""
"Kliknite na Ok da zadržite tu konfiguraciju ili Odustani za podešavanje vaše "
"Internet & Mrežne konekcije.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7295,72 +7369,72 @@ msgstr ""
"Sada ćemo podesiti vašu internet/mrežnu konekciju.\n"
"Ako ne želite da koristite automatsko prepoznavanje, isključite opciju.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Izaberite profil za podešavanje"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ekspertni mod"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Prepoznajem uređaje..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normalna modemska konekcija"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detektovan na portu %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN konekcija"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detektovan %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL konekcija"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detektovan na interfejsu %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kablovska konekcija"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "otkrivena kablovska konekcija"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN konekcija"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "prepoznata ethernet kartica(e)"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Izaberite konekciju koju želite podesiti"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7370,23 +7444,23 @@ msgstr ""
"Izaberite jedan od njih koji ćete koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internet konekcija"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Da li želite pokrenuti konekciju prilikom boota?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Podešavanje mreže"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Potrebno je restartovati mrežu"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7397,7 +7471,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7407,7 +7481,7 @@ msgstr ""
"\n"
"Sada će ova konfiguracija biti primjenjena na vaš sistem.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7415,7 +7489,7 @@ msgstr ""
"Nakon što je to gotovo, preporučujemo da restartujete vaš X\n"
"okoliš kako bi se izbjegao problem sa promjenom naziva računara."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7425,7 +7499,7 @@ msgstr ""
"Provjerite vašu konekciju pomoću net_monitor ili mcc. Ako vaša konekcija ne "
"radi, možete ponovo pokrenuti podešavanje"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7436,7 +7510,7 @@ msgstr ""
"Samo prihvatite kako bi ovaj uređaj ostao podešen.\n"
"Izmjena polja ispod će prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7446,43 +7520,43 @@ msgstr ""
"Svaka stavka bi trebala biti unesena kao IP adresa u decimalnoj notaciji\n"
"razdvojenoj tačkama (npr. 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Podešavam mrežni uređaj %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (drajver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatska IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Pokrenut na bootu"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti u formatu 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7494,42 +7568,53 @@ msgstr ""
"kao što je ``mojcomp.mojlab.mojafirma.com''.\n"
"Možete također unijeti IP adresu gateway-a ako ga imate"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (tj. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti u formatu 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti u formatu 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Konfiguracija proxija"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Otkrij id mrežne karte (korisno za laptope)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy treba biti ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url treba počinjati sa 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9024,7 +9109,7 @@ msgstr "Štampam na štampač \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9575,11 +9660,6 @@ msgstr ""
"Molimo popunite informacije o ftp proxiju\n"
"Ostavite polja praznim ako ne želite ftp proxy"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url treba počinjati sa 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9627,6 +9707,43 @@ msgstr "mkraid nije uspio (možda nedostaju raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Nivo sigurnosti"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Nivo sigurnosti"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Udaljena administracija"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Default)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Podešavanje nivoa sigurnosti"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Molimo sačekajte, pripremam instalaciju"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA zvučni sistem (Advanced Linux Sound Architecture)"
@@ -9930,7 +10047,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistem"
@@ -10030,7 +10147,7 @@ msgstr "Spoji se na Internet"
#: ../../share/advertising/03-internet.pl_.c:10
#, fuzzy
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10090,7 +10207,7 @@ msgstr "Korisnički okoliš"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10119,7 +10236,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Pretvorite vaš računar u moćan server sa svega nekoliko klikova mišem: Web "
@@ -10137,7 +10254,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -10153,7 +10270,7 @@ msgstr ""
#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Čitav raspon Linux rješenja, kao i posebne ponude za proizvode i "
"'potrepštine', dostupni su u našoj online radnji"
@@ -10204,8 +10321,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -10241,11 +10358,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Molimo izvršite logout i zatim koristitite Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
@@ -10293,16 +10410,6 @@ msgstr "Dodaj korisnika"
msgid "Add/Del Clients"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Pomoć"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10355,53 +10462,68 @@ msgstr "Dodaj korisnika"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Podešavam..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Napredno podešavanje"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "rekonfiguriši"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Nema pogodne disketne jedinice"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10550,13 +10672,13 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "ukupno napredak"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10565,41 +10687,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Bez šifre"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Ne mogu otvoriti %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10610,65 +10732,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Backup-uj sistemske datoteke..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Datoteke backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Backup-uj korisničke datoteke..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Napredak backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Backup-uj ostale datoteke..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10676,7 +10798,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10685,7 +10807,7 @@ msgstr ""
"lista datoteka poslana putem FTPa: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
#, fuzzy
msgid ""
"\n"
@@ -10696,39 +10818,39 @@ msgstr ""
"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
"putem FTPa.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Greška tokom slanja pošte. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Izbor datoteka"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10736,26 +10858,26 @@ msgstr ""
"\n"
"Molimo uključite sve potrebne opcije.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ove opcije mogu spasiti ili vratiti sve datoteke u vašem /etc direktoriju.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Zaobiđi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10763,65 +10885,67 @@ msgstr ""
"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
" verziju vašeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Molimo izaberite sve korisnike koje želite uključiti u vaš backup."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Ne uključuj spremnik web preglednika"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za backup"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Molimo unesite ime računara ili IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10830,68 +10954,68 @@ msgstr ""
"Molimo unesite direktorij za\n"
" smještaj backupa na ovom računaru."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Molimo unesite vaš login"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Molimo unesite vašu šifru"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Zapamti ovu šifru"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za backup"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Molimo izaberite vaš CD prostor"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10899,36 +11023,36 @@ msgstr ""
"Molim unesite naziv uređaja vašeg CD Writera\n"
" npr: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Izaberite datoteku"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10936,57 +11060,57 @@ msgstr ""
"Molim unesite maksimalnu veličinu\n"
" dozvoljenu za Draxbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Koristi quotu za backup datoteke."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Mreža"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tip"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "svakog sata"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "dnevno"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "sedmično"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "mjesečno"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Koristi demon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10994,7 +11118,7 @@ msgstr ""
"Izaberite vremenski interval\n"
"između svakog backupa"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11002,7 +11126,7 @@ msgstr ""
"Molim izaberite medij\n"
"za backup."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11010,71 +11134,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Molim budite sigurni da je cron demon aktiviran u vašim servisima."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Pošalji mail izvještaj nakon svakog backupa na :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Šta"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Više opcija"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Podešavanje Drakbackup-a"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Molimo izaberite gdje želite backupovati"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "na hard disk"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "preko mreže"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Molim izaberite šta želite backupovati"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Backup sistema"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Backup korisnika"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Ručno izaberite korisnika"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11082,7 +11206,7 @@ msgstr ""
"\n"
"Izvori backup-a: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11090,7 +11214,7 @@ msgstr ""
"\n"
"- sistemske datoteke:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11098,7 +11222,7 @@ msgstr ""
"\n"
"- korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11106,7 +11230,7 @@ msgstr ""
"\n"
"- ostale datoteke:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11115,32 +11239,32 @@ msgstr ""
"\n"
"- spasi na hard disku u direktoriju: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Uređaj miša: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11149,12 +11273,12 @@ msgstr ""
"\n"
"- spasi na FTPu na računaru: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11163,7 +11287,7 @@ msgstr ""
"\n"
"- spasi na FTPu na računaru: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11172,7 +11296,7 @@ msgstr ""
"\t\t korisničko ime: %s\n"
"\t\t u direktoriju: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11180,19 +11304,19 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tNe uključuj sistemske datoteke\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackupi koriste tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackupi koriste tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11201,41 +11325,41 @@ msgstr ""
"\n"
"- Demon (%s) uključuje :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Hard disk.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Mrežu preko SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11243,7 +11367,7 @@ msgstr ""
"Lista podataka za vraćanje:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11251,256 +11375,256 @@ msgstr ""
"Lista oštećenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Molimo isključite ili pobrišite ga idući put."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Backup datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr " Svi vaši izabrani podaci su "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " uspješno spašeni na %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Vrati konfiguraciju "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK za vraćanje ostalih datoteka."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista korisnika za vraćanje (samo najsvježiji datum po korisniku je značajan)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Vrati sistemske datoteke prije:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "molim izaberite datum za vraćanje"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Koristi hard disk za backup"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP konekcija"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Sigurna konekcija"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Molim unesite direktorij gdje su smješteni backupi"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij za vraćanje"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Drugi medij"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Vrati sistem"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "izaberite stazu za vraćanje (umjesto / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Izvrši novi backup prije vraćanja (samo za inkrementalni backup.)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Pobriši korisničke direktorije prije vraćanja."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Backup datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Vrati tabelu particija"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Host name"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Šifra"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Korisničko ime"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Hostname: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Vrati sve backupe"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Ručno vraćanje"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Vrati tabelu particija"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Prethodni"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Spasi"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Izgradi backup"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Vrati"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -11511,14 +11635,14 @@ msgstr ""
" vaš mail izvještaj nije poslan\n"
" Molim podesite sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Sljedeći paketi će biti instalirani"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -11527,19 +11651,19 @@ msgstr ""
"Greška tokom slanja datoteke preko FTPa.\n"
" Molimo ispravite vašu FTP konfiguraciju."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Molim izaberite podatke za vraćanje..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Molim izaberite medij za backup..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Molim izaberite podatke za backup..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11547,59 +11671,59 @@ msgstr ""
"Nije pronađena konfiguraciona datoteka \n"
"molim kliknite na Čarobnjak ili Napredno."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "U izradi ... molim sačekajte."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Backup sistemskih datoteka"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Backup korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Backup ostalih datoteka"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Ukupan napredak"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "slanje datoteka putem FTPa"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Šaljem datoteke..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Backup-uj sada iz konfiguracijske datoteke"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Pogledaj postavke backupa."
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Čarobnjak za podešavanje"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Napredno podešavanje"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Backup-uj sada"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
#, fuzzy
msgid ""
"options description:\n"
@@ -11660,7 +11784,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11674,7 +11798,7 @@ msgstr ""
" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11752,7 +11876,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
#, fuzzy
msgid ""
"restore description:\n"
@@ -11805,18 +11929,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11846,7 +11970,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11922,7 +12046,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11940,7 +12064,7 @@ msgstr ""
"drive before sending it to the server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11962,7 +12086,7 @@ msgstr ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12079,8 +12203,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Alati za konzolu"
@@ -12157,28 +12281,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "port"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Post Uninstall"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
@@ -12280,10 +12404,6 @@ msgstr "Čarobnjak..."
msgid "Apply"
msgstr "Primjeni"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Konektovan"
@@ -12404,7 +12524,7 @@ msgstr "Naziv modula"
msgid "Size"
msgstr "Veličina"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12469,12 +12589,12 @@ msgstr "Ispis"
msgid "Build the disk"
msgstr "Napravi disk"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Provjeri da li je medij prisutan za ovaj uredjaj %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12483,12 +12603,12 @@ msgstr ""
"Nema medija za ovaj uredjaj %s.\n"
"Molim ubacite ga."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne mogu izvrsiti fork: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12972,158 +13092,158 @@ msgstr ""
"\n"
"Kliknite na Podesi da pokrenete čarobnjak."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Radna grupa"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "particiji %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Korisnik"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Obriši"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Gotovo"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Dodaj modul"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Dodaj novi štampač"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Ništa izabrano"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Prihvati korisnika"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Verzija: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Koristi auto prepoznavanje"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Koristi auto prepoznavanje"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Spasi izbor paketa"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Korisnik"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Radna grupa"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nije konektovan"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13135,137 +13255,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Kreiranje boot diskete"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Rezolucija"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Izaberi datoteku"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Share naziv"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Post-instalacijsko podešavanje"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Izlaz"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Sistem instalacije"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Podešavanje servisa"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "Uređaj"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "Uređaj"
+msgid "Save theme"
+msgstr "Sistem instalacije"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Izaberite monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Izbor modela štampača"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Morate izabrati ili unijeti štampač / uređaj!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Prepoznajem uređaje ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13406,6 +13536,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "upotreba: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "upotreba: keyboarddrake [--expert] [keyboard]\n"
@@ -13435,11 +13572,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ne mogu da pokrenem live upgrade !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13722,16 +13859,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13806,7 +13940,7 @@ msgstr "Instaliraj sistemske update"
msgid "Exit install"
msgstr "Napusti instalaciju"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
@@ -14053,6 +14187,21 @@ msgstr "Multimedija - Prženje CDa"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Post-instalacijsko podešavanje"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy treba biti ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Izlaz"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -14598,9 +14747,6 @@ msgstr "Znanstvena radna stanica"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "Podešavanje nivoa sigurnosti"
-
#~ msgid "Select a graphics card"
#~ msgstr "Izaberite grafičku kartu"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 7e6f963e6..7bdc97c39 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-10-28 01:14+0200\n"
"Last-Translator: Softcatal <traddrake@softcatala.org>\n"
"Language-Team: Catalan <traddrake@softcatala.org>\n"
@@ -93,24 +93,24 @@ msgstr "Configura tots els capals independentment"
msgid "Use Xinerama extension"
msgstr "Utilitza l'extensi Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configura noms la targeta \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "Xfree %s amb acceleraci 3D de maquinari"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -120,18 +120,18 @@ msgstr ""
"l'Xfree %s.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La vostra targeta pot tenir acceleraci 3D de maquinari amb l'Xfree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s amb acceleraci 3D de maquinari EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,7 +144,7 @@ msgstr ""
"PENJAR.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,12 +154,12 @@ msgstr ""
"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
"PENJAR."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installaci del controlador de pantalla"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Personalitzada"
@@ -179,32 +179,32 @@ msgstr "Resoluci"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcions"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "D'acord"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Surt"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -302,25 +302,25 @@ msgstr "Escolliu la resoluci i la profunditat de color"
msgid "Graphics card: %s"
msgstr "Targeta grfica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Cancella"
@@ -398,11 +398,11 @@ msgstr "Servidor xFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Controlador de l'xFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Interficie grfica a l'inici"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -412,7 +412,7 @@ msgstr ""
"l'interficie grfica durant l'arrencada.\n"
"Voleu que XFree s'inici quan torneu a arrencar l'ordinador?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -424,7 +424,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Quin tipus de connexi XDSI teniu?"
@@ -497,7 +497,7 @@ msgstr "Compacte"
msgid "compact"
msgstr "compacte"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Mode de vdeo"
@@ -505,17 +505,17 @@ msgstr "Mode de vdeo"
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
@@ -551,14 +551,14 @@ msgstr ""
"L'opci ``Limita les opcions de la lnia d'ordres'' no t cap s sense una "
"contrasenya"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
@@ -600,7 +600,7 @@ msgstr ""
"\n"
"En quina unitat arrenqueu?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -608,152 +608,152 @@ msgstr ""
"Aquestes sn les diferents entrades en el men d'arrencada.\n"
"Podeu afegir-ne algunes ms o canviar-ne les existents."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Fet"
#
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modifica"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Un altre SO (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Un altre SO (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Imatge"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Arrel"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Afegeix"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lectura-escriptura"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "No segur"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Predeterminat"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-size"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Elimina l'entrada"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Heu d'especificar una imatge del nucli"
#
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Heu d'especificar una partici arrel"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Aquesta etiqueta ja est en s"
# #msgid "Found %s %s interfaces"
# #msgstr "S'han trobat interfcies %2$s %1$s"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "S'han trobat interfcies %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "En teniu una altra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Teniu alguna interfcie %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "S"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Mira la informaci del maquinari"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "S'est installant el programa de control per a la targeta de %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(mdul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -763,7 +763,7 @@ msgstr ""
"Tingueu en compte que qualsevol adrea hauria de ser entrada amb el prefix "
"0x com '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -774,17 +774,17 @@ msgstr ""
"Les opcions estan en el format ``nom=valor nom2=valor2 ...''.\n"
"Per exemple, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opcions del mdul:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quin programa de control %s he de provar?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -801,15 +801,15 @@ msgstr ""
"cerqui al vostre ordinador la informaci que necessita? Aquesta recerca\n"
"podria blocar l'ordinador, per aix no causaria cap dany."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Exploraci automtica"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -818,65 +818,65 @@ msgstr ""
"Ha fallat la crrega del mdul %s.\n"
"Voleu tornar-ho a intentar amb altres parmetres?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "accs a programes X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "accs a les eines rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "permet \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "accs a fitxers administratius"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "accs a les eines rpm"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "accs a les eines rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Aquesta contrasenya s massa senzilla"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Si us plau, introduu un nom d'usuari"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nom d'usuari noms pot contenir lletres en minscula, nmeros, `-' i `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -885,33 +885,33 @@ msgstr ""
"Introduu un usuari\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nom real"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nom d'usuari"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Entrada automtica"
#
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -920,20 +920,20 @@ msgstr ""
"nom d'usuari.\n"
"Voleu activar aquesta caracterstica?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per defecte:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
#
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -943,38 +943,38 @@ msgstr ""
"els llenguatges que volgueu installar. Estaran disponibles\n"
"quan reinicieu el sistema desprs de que la installaci s'hagi completat."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tots"
#
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Permet tots els usuaris"
#
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "No es comparteix"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "El paquet %s s'ha d'installar. El voleu installar?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Podeu exportar utilitzant NFS o Samba. Seleccioneu quin voleu utilitzar."
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "El paquet %s necessari falta"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -988,11 +988,11 @@ msgstr ""
"\n"
"\"Defecte\" permetre granularitat per usuari.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Executa userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1000,32 +1000,32 @@ msgstr ""
"La compartici per usuari utilitza el grup \"ComparticiFitxers\".\n"
"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Benvinguts, crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estndard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alt"
#
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Ms Alt"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoic"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1036,7 +1036,7 @@ msgstr ""
"d'utilitzar, per tamb molt sensible: no s'ha d'utilitzar en un ordinador\n"
"connectat a d'altres o a Internet. No s'hi accedeix mitjanant contrasenya."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1045,7 +1045,7 @@ msgstr ""
"segueix sense ser recomanable."
#
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1054,7 +1054,7 @@ msgstr ""
"s'utilitzar per connectar-se a Internet com a client. Ara hi ha "
"comprovacions de seguretat."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1063,7 +1063,7 @@ msgstr ""
"automtiques"
#
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1079,7 +1079,7 @@ msgstr ""
"un client d'internet, seria millor escollir un nivell menor"
#
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1087,38 +1087,38 @@ msgstr ""
"Aix s similar al nivell anterior, per el sistema est completament tancat "
"i les caracterstiques de seguretat estan al mxim."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Escolliu el nivell de seguretat"
#
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "El nivell de seguretat"
#
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Utilitzeu libsafe per als servidors"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Una llibreria que el defensa contra els 'buffer overflow' i el atacs de "
"'format string'."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
#, fuzzy
msgid "Security Administrator (login or email)"
msgstr "Seguretat d'usuari (login o email)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1131,7 +1131,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1156,13 +1156,13 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1170,45 +1170,45 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar-les"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordres prvies a l'arrencada, o 'c' per obtenir una lnia d'ordres."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La posici ressaltada arrencar automticament dintre de %d segons."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Escriptori"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Men Inici"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "No podeu installar el carregador d'arrencada a la partici %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "encara no s'ha implementat cap ajuda.\n"
@@ -1260,106 +1260,106 @@ msgstr "Mode LILO/Grub"
msgid "Yaboot mode"
msgstr "Mode Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Installa el sistema"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Crea una nova partici"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Error"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Copiant %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NoVideo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Tipus d'installaci"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1368,22 +1368,22 @@ msgstr ""
"Actualment utilitzeu %s com a carregador d'arrencada\n"
"Feu click en Configura per a executar l'auxiliar de configuraci."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configura"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Desa la selecci de paquets"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1392,44 +1392,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Mode de sistema"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Executa el sistema X-Window en iniciar"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "No, no vull l'entrada automtica"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "S, vull l'entrada automtica amb aquest (usuari, escriptori)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "D'acord"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "no es pot obrir /etc/inittab per a lectura: %s"
@@ -1533,25 +1533,33 @@ msgstr "ustria"
msgid "United States"
msgstr "Estats Units"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Nou"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmunta"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Munta"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
@@ -1559,26 +1567,26 @@ msgid "Mount point"
msgstr "Punt de muntatge"
#
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Si us plau entreu la velocitat d'escriptura del cd"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Servidor: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
@@ -1668,7 +1676,7 @@ msgstr "Buit"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Altres"
@@ -1820,7 +1828,7 @@ msgstr ""
"La cpia de seguretat de la taula de particions no t la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Advertncia"
@@ -2392,7 +2400,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Nom d'usuari"
@@ -2405,23 +2413,23 @@ msgstr "Domini"
msgid "Search servers"
msgstr "Cerca servidors"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "No s com formatar %s amb el tipus %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "La partici a muntar %s en el directori %s ha fallat"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produt un error en desmuntar %s: %s"
@@ -2511,50 +2519,114 @@ msgstr "Res a fer"
msgid "Error opening %s for writing: %s"
msgstr "S'ha produt un error en obrir %s per escriure: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
#
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Configuraci de CUPS"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Programa de control"
#
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Ajuda"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Si us plau, espereu... s'est aplicant la configuraci"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Si us plau, espereu"
+
+#
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "Dispositiu X"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Model desconegut"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2679,7 +2751,8 @@ msgid "/_Quit"
msgstr "/_Surt"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ajuda"
@@ -2698,75 +2771,76 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Informeu d'un error"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "_Quant a..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Exploraci automtica"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detecci del disc dur"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Mira la informaci del maquinari"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Mostra la informaci"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Configura el ratol"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "detectat al port %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Si us plau, espereu"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "S'est esborrant la impressora \"%s\"..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d segons"
@@ -4862,7 +4936,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Tamb heu de formatar %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4888,7 +4962,7 @@ msgstr ""
"\n"
"Voleu realment installar aquests servidors?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4897,20 +4971,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "No es pot utilitzar l'emissi sense un domini NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Aquest disquet no est formatat en FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4918,12 +4992,12 @@ msgstr ""
"Per utilitzar aquesta selecci de paquets desada, arrenqueu la installaci "
"amb ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "S'ha produt un error en llegir el fitxer %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -5172,7 +5246,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
@@ -5204,11 +5278,11 @@ msgstr "Tipus d'installaci"
msgid "Please choose one of the following classes of installation:"
msgstr "Si us plau, trieu un dels tipus d'installaci segents:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Selecci del grup de paquets"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Selecci individual de paquets"
@@ -5286,7 +5360,7 @@ msgstr "Mostra automticament els paquets seleccionats"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installa"
@@ -5309,7 +5383,7 @@ msgstr "Installaci Mnima"
msgid "Choose the packages you want to install"
msgstr "Escolliu els paquets que voleu installar"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "S'est installant"
@@ -5336,17 +5410,17 @@ msgid "Installing package %s"
msgstr "S'est installant el paquet %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accepta"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Rebutja"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5363,16 +5437,16 @@ msgstr ""
"ROM."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Voleu seguir igualment?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "S'ha produt un error en ordenar els paquets:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "S'ha produt un error en installar els paquets:"
@@ -5501,7 +5575,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5682,7 +5756,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclat"
@@ -5905,11 +5979,11 @@ msgid "Selected size is larger than available space"
msgstr "La mida seleccionada s superior a la disponible"
#
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Tipus d'installaci"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5918,19 +5992,19 @@ msgstr ""
"Escolliu la installaci mnima que voleu:"
#
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Amb X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Amb documentaci bsica (recomenada!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installaci realment mnima (especialment no urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5940,16 +6014,16 @@ msgstr ""
"Si no teniu cap d'aquests CD, feu clic a Cancella.\n"
"Si noms falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "S'est preparant la installaci"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5958,21 +6032,21 @@ msgstr ""
"S'est installant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Configuraci desprs de la installaci"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Inseriu el disquet d'Actualitzaci de Mduls a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -6039,7 +6113,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -6061,172 +6135,172 @@ msgstr ""
"Voleu installar aquestes actualitzacions ?"
#
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"S'est contactant amb el servidor Mandrake Linux per obtenir la llista de "
"rpliques disponibles..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Escolliu una rplica des de la qual aconseguir els paquets"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"S'est contactant amb la rplica per a obtenir la llista dels paquets "
"disponibles..."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "En quina zona horria us trobeu?"
#
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "El rellotge del vostre ordinador est regulat per GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronitzaci automtica de la hora (usant NTP)"
#
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Servidor NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Cap impressora"
#
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Teniu una targeta de so ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Executeu \"sndconfig\" desprs de la installaci per a configurar la "
"targeta de so"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"No s'ha detectat cap targeta de so. Proveu amb \"harddrake\" desprs de la "
"installaci"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resum"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Ratol"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Zona horria"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Targeta XDSI"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Targeta de so"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Targeta de TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
#
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Aconsegueix les Fons de Windows"
#
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Impressores local"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasenya de 'root'"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Sense contrasenya"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya s massa curta (ha de tenir com a mnim %d carcters)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticaci"
#
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autenticaci LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
#
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Servidor LDAP"
#
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autenticaci NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6243,21 +6317,21 @@ msgid ""
msgstr ""
#
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticaci LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nom de domini"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6287,19 +6361,19 @@ msgstr ""
"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
"a la primera unitat i premeu \"D'acord\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6327,7 +6401,7 @@ msgstr ""
"sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6341,30 +6415,30 @@ msgstr ""
"creant un disquet d'arrencada per un de 1.44 Mb molt probablement fallar,\n"
"perqu XFS necessita una unitat molt gran)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
"d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "S'est creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "S'est preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6376,11 +6450,11 @@ msgstr ""
"La installaci continuar, per haureu\n"
"d'utilitzar el BootX per a arrencar el vostre ordinador"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6390,17 +6464,17 @@ msgstr ""
"primera partici?"
#
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Installant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ha fallat la installaci del carregador d'arrencada. S'ha produt l'error "
"segent:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6419,17 +6493,17 @@ msgstr ""
" Desprs, escriviu: shut-down\n"
"En l'arrencada segent heu de veure l'indicador del carregador d'arrencada."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "S'est creant el diquet d'installaci automtica"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6439,7 +6513,7 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6472,15 +6546,15 @@ msgstr ""
"l'ltim captol d'installaci de la Guia Oficial de l'Usuari del\n"
"Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Genera un disquet per a la installaci automtica"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6495,15 +6569,15 @@ msgstr ""
"\n"
"Potser preferireu repetir la installaci.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automtica"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Repeteix"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Desa la selecci de paquets"
@@ -6540,15 +6614,15 @@ msgstr "Avanat"
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Anterior"
#
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Segent"
@@ -7011,7 +7085,7 @@ msgstr "Tecla de \"Windows\" Dreta"
msgid "Circular mounts %s\n"
msgstr "Muntatges circulars %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Elimineu primer els volums lgics\n"
@@ -7151,15 +7225,15 @@ msgstr "cap"
msgid "No mouse"
msgstr "Cap ratol"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Si us plau, comproveu el ratol."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Per activar el ratol,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MOVEU LA BOLA!"
@@ -7196,11 +7270,11 @@ msgstr "Redueix l'arbre"
msgid "Toggle between flat and group sorted"
msgstr "Commuta entre pla i ordenat per grups"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Connecta't a internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -7210,23 +7284,19 @@ msgstr ""
"Algunes connexions utilitzen pptp, unes poques utilitzen dhcp.\n"
"Si no ho sabeu, escolliu 'utilitza pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "utilitza dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "utilitza pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "utilitza pptp"
@@ -7332,7 +7402,7 @@ msgstr ""
msgid "no network card found"
msgstr "no s'ha trobat cap targeta de xarxa"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "S'est configurant la xarxa"
@@ -7349,15 +7419,15 @@ msgstr ""
"El nom ha de ser complet,\n"
"com ara ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Nom de l'ordinador central"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Auxiliar de configuraci de xarxa"
@@ -7406,8 +7476,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Antiga configuraci (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Configuraci de l'XDSI"
@@ -7447,23 +7517,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Quin protocol voleu utilitzar?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Quin tipus de targeta teniu?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "No s"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7477,19 +7552,19 @@ msgstr ""
"\n"
"Si teniu una targeta PCMCIA, us en cal saber l'\"irq\" i l'\"io\".\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Interromp"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Continua"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Quina targeta XDSI teniu ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7497,7 +7572,7 @@ msgstr ""
"He detectat una targeta PCI XDSI, per no en conec el tipus. Si us plau, "
"seleccioneu una targeta PCI a la pantalla segent."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"No s'ha trobat cap targeta PCI XDSI. Si us plau, seleccioneu-ne una a la "
@@ -7552,7 +7627,7 @@ msgstr "Primer servidor DNS (opcional)"
msgid "Second DNS Server (optional)"
msgstr "Segon servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7560,7 +7635,7 @@ msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7568,11 +7643,11 @@ msgstr ""
"\n"
"Podeu tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Ara mateix esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7580,33 +7655,33 @@ msgstr ""
"\n"
"Podeu connectar-vos a Internet o tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Ara mateix no esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Connecta"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Desconnecta"
#
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Configura la connexi"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Connexi i configuraci d'Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ara configurarem la connexi %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7625,12 +7700,12 @@ msgstr ""
"\n"
"Premeu D'acord per a continuar."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuraci de xarxa"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7642,7 +7717,7 @@ msgstr ""
"Feu clic a D'acord per conservar la configuraci, o a Cancella per tornar a "
"configurar la connexi a Internet i xarxa.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7655,75 +7730,75 @@ msgstr ""
"Si no voleu utilitzar la detecci automtica, desactiveu el quadre de "
"verificaci.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Escolliu el perfil per configurar"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Utilitza la detecci automtica"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Mode expert"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "S'estan detectant els dispositius..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Connexi normal per mdem"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detectat al port %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Connexi XDSI"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "s'ha detectat %s"
#
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Connexi ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detectat a la interfcie %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Connexi de cable"
#
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Connexi de cable detectada"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Connexi LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "s'han detectat una o diverses targetes Ethernet"
#
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Escolliu la connexi per voleu configurar"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7734,23 +7809,23 @@ msgstr ""
"\n"
#
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Connexi a Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Voleu iniciar la connexi en arrencar?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Configuraci de xarxa"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "La xarxa necessita sser reiniciada"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7761,7 +7836,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7771,7 +7846,7 @@ msgstr ""
"\n"
"Ara s'aplicar la configuraci al sistema.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7779,7 +7854,7 @@ msgstr ""
"Desprs d'aix, s recomanable que reinicieu l'entorn X per\n"
"evitar problemes deguts al canvi de nom de l'ordinador central."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7789,7 +7864,7 @@ msgstr ""
"Testegeu la connexi via net_monitor o mcc. Si la connexi no funciona "
"correctament, voldreu tornar a fer la configuraci."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7800,7 +7875,7 @@ msgstr ""
"Noms cal que accepteu per a mantenir-lo configurat.\n"
"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuraci."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7810,43 +7885,43 @@ msgstr ""
"S'ha d'introduir cada element com a una adrea IP amb notaci decimal amb\n"
"punts (per exemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "S'est configurant el dispositiu de xarxa %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Adrea IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Submscara de la xarxa"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP automtic"
#
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Inicia en l'arrencada"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adrea IP ha d'estar amb el format 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7858,42 +7933,54 @@ msgstr ""
"``mybox.mylab.myco.com''.\n"
"Tamb podeu introduir l'adrea IP de la passarella, si en teniu una"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Passarella(Gateway) (e.g. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dispositiu de la passarella"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "L'adrea IP ha d'estar amb el format 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "L'adrea IP ha d'estar amb el format 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Configuraci dels proxys"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Vigila id de la targera de xarxa(d'utilitat per a laptops)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "El proxy ha de ser http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "El proxy ha de ser ftp://..."
+#
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "La Url haura de comenar amb 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9493,7 +9580,7 @@ msgstr "S'est imprimint en la impressora \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -10097,12 +10184,6 @@ msgstr ""
"Per favor, entreu les informacions del proxy ftp\n"
"Deixeu en blanc si no voleu un proxy ftp"
-#
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "La Url haura de comenar amb 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -10154,6 +10235,45 @@ msgstr "mkraid ha fallat (potser manquen eines del RAID(raidtools)?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hi ha prou particions per al nivell RAID %d\n"
+#
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "El nivell de seguretat"
+
+#
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "El nivell de seguretat"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Seguretat d'usuari (login o email)"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Predeterminat)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "S'est establint el nivell de seguretat"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Si us plau, espereu, s'est preparant la installaci..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Llanar el sistema de so ALSA (Advanced Linux Sound Architecture)"
@@ -10474,7 +10594,7 @@ msgid "File sharing"
msgstr "Compartici de fitxers"
#
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistema"
@@ -10576,7 +10696,7 @@ msgstr "Connecta't a internet"
#: ../../share/advertising/03-internet.pl_.c:10
#, fuzzy
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10636,7 +10756,7 @@ msgstr "Interfcies d'usuari"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10666,7 +10786,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Transformeu el vostre ordinador en un poders servidor amb noms uns quants "
@@ -10685,7 +10805,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -10701,7 +10821,7 @@ msgstr ""
#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Trobareu tota la gama de solucions Linux, aix com ofertes especials en "
"productes en la nostra botiga online"
@@ -10753,8 +10873,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#
@@ -10792,11 +10912,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "S'est installant els paquets..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-tecla de retrocs"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
@@ -10847,17 +10967,6 @@ msgstr "Afegeix un usuari"
msgid "Add/Del Clients"
msgstr "Client DHCP"
-#
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Ajuda"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10912,53 +11021,69 @@ msgstr "Afegeix un usuari"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "Client DHCP"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "S'est configurant..."
-#: ../../standalone/drakTermServ_.c:870
+#
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Configuraci Avanada"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "torna a configurar"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -11114,12 +11239,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Progrs total"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -11128,41 +11253,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Sense contrasenya"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "No es pot obrir %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -11173,69 +11298,69 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Cpia de seguretat de fitxers del sistema..."
#
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Els fitxers de la cpia de seguretat del disc dur..."
#
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Cpia de seguretat de fitxers d'usuari..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Progrs de la cpia de seguretat en disc dur..."
#
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Els fitxers de cpia de seguretat d'altres fitxers..."
#
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Utilitzar la cinta per a fer la cpia de seguretat"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -11243,7 +11368,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -11252,7 +11377,7 @@ msgstr ""
"llista de fitxers enviada per FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -11262,14 +11387,14 @@ msgstr ""
" problema en la connexi FTP: No ha estat possible enviar els fitxers de la "
"cpia de seguretat per FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -11277,25 +11402,25 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " S'ha produt un error en enviar el correu electrnic. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selecci de fitxers"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Seleccioneu els fitxers i directoris i feu clic en 'Afegir'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -11303,26 +11428,26 @@ msgstr ""
"\n"
"Per favor, comproveu totes les opcions que necessiteu.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Aquestes opcions poden fer cpia de seguretat i restaurar els fitxers en el "
"directory /etc.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Fer cpia de seguretat dels fitxers del Sistema. ( directori /etc ) "
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Utilitzar cpia incremental (no reemplaa cpies antigues)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "No incloure fitxers crtics (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -11331,71 +11456,73 @@ msgstr ""
" del directori /etc."
#
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Si us plau, escolliu tots els usuaris que voleu incloure en la cpia de "
"seguretat."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "No incloure la memria cau del navegador"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Utilitza cpies incrementals (no reemplaa antigues cpies)"
#
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Elimina el seleccionat"
#
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
#
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Usuaris"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Utilitza connexi FTP per fer la cpia de seguretat"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Transferir"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Si us plau, proporcioneu el nom de l'ordinador o la IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -11405,29 +11532,29 @@ msgstr ""
" posar la cpia de seguretat d'aquest ordinador central."
#
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Si us plau, entreu la entrada"
#
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Si us plau, entreu la contrasenya"
#
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Recordar aquesta contrasenya"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Utilitzar CD/DVDROM per fer la cpia"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -11435,44 +11562,44 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Si us plau, escolliu l'espai del CD"
#
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
#
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
#
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11480,37 +11607,37 @@ msgstr ""
"Si us plau, entreu el nom del dispositiu del CD Writer\n"
" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Utilitzar la cinta per a fer la cpia de seguretat"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
"Si us plau, subministreu el nom del dispositiu a utilitzar per fer la cpia"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11519,61 +11646,61 @@ msgstr ""
" permesa per a Drakbackup"
#
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Si us plau, subministreu el directori per a desar:"
#
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Utilitzar la cuota de disc per als fitxers de cpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Xarxa"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Disc Dur / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipus"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "cada hora"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "diria"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "setmanal"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "mensual"
#
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Utilitza dimoni"
#
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11582,7 +11709,7 @@ msgstr ""
"de temps entre cada cpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11590,7 +11717,7 @@ msgstr ""
"Si us plau, trieu el\n"
"medi per a la cpia."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11599,80 +11726,80 @@ msgid ""
msgstr ""
"Si us plau assegureu-vos que el dimoni cron est incls en els serveis."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Envieu informe per correu electrnic desprs de cada cpia a :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Que"
#
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "On"
#
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Quant"
#
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Ms opcions"
#
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Configuraci de Drakbackup"
#
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Si us plau, escolliu on voleu fer la cpia de seguretat"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "en el Disc Dur"
#
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "per la Xarxa"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Si us plau, escolliu de qu voleu fer la cpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Cpia del seguretat del sistema"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Cpia de seguretat dels usuaris"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Seleccioneu l'usuari manualment"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11680,7 +11807,7 @@ msgstr ""
"\n"
"Fonts de la cpia: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11688,7 +11815,7 @@ msgstr ""
"\n"
"- Fitxers del Sistema:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11696,7 +11823,7 @@ msgstr ""
"\n"
"- Fitxers d'Usuari:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11704,7 +11831,7 @@ msgstr ""
"\n"
"- Altres Fitxers:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11713,32 +11840,32 @@ msgstr ""
"\n"
"- Desar-ho en el Disc Dur en el cam: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Dispositiu del ratol: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11747,12 +11874,12 @@ msgstr ""
"\n"
"- Desar-ho en FTP en l'ordinador central: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11761,7 +11888,7 @@ msgstr ""
"\n"
"- Desar-ho en FTP en l'ordinador central: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11771,7 +11898,7 @@ msgstr ""
"\t\t en el cam: %s \n"
#
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11779,19 +11906,19 @@ msgstr ""
"\n"
"- Opcions:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tNo incloure Fitxers del Sistema\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tLes cpies de seguretat utilitzen tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tLes cpies de seguretat utilitzen tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11800,39 +11927,39 @@ msgstr ""
"\n"
"- Dimoni (%s) incls :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t.Disc dur.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Xarxa per FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Xarxa per SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Xarxa per rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Xarxa per webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Cap configuraci, si us plau cliqueu en Auxiliar o Avanat.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11840,7 +11967,7 @@ msgstr ""
"Llista de dades per a restaurar:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11849,142 +11976,142 @@ msgstr ""
"\n"
#
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Si us plau, deseleccioneu o esborreu-ho la prxima vegada."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Els fitxers de la cpia de seguretat estan corromputs"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Totes les dades seleccionades han estat "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Restaurades Correctament en %s "
#
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Configuraci de Restauraci "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "D'acord per a restaurar els altres fitxers."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Llista d'usuaris per a restaurar (noms s important la data ms recent per "
"usuari)"
#
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Abans cpia de seguretat de fitxers del sistema:"
#
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Si us plau, seleccioneu la data a restaurar"
#
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Utilitzar el Disc Dur per a fer la cpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Si us plau, subministreu el directori per a desar:"
#
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Connexi FTP"
#
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Connexi Segura"
#
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Restaura des del disc dur."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Si us plau, entreu el directori on les cpies es guarden"
#
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Si us plau, seleccioneu un altre medi des del qual restaurar"
#
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Altres Medis"
#
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Restaura el Sistema"
#
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Restaura els Usuaris"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "seleccioneu cam al qual restaurar ( en comptes de / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Fer nova cpia de seguretat abans de restaurar (noms per les cpies "
"incrementals.)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Esborrar directoris d'usuaris abans de restaurar."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Elimina el seleccionat"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Els fitxers de la cpia de seguretat estan corromputs"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -11992,17 +12119,17 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Restaura des del disc dur."
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -12010,119 +12137,119 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Restaura la taula de particions"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Restaura els Usuaris"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Nom de l'ordinador central"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Contrasenya"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Nom d'usuari"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Nom de l'ordinador central: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Restaurar totes les cpies"
#
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Restauraci Personalitzada"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Restaura la taula de particions"
#
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Restaura els Usuaris"
#
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Anterior"
#
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Desa"
#
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Construeix la cpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Restaura"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -12133,14 +12260,14 @@ msgstr ""
" el vostre missatge d'informe no ha estat enviat\n"
" Si us plau configureu el sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ara s'installaran els paquets segents"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -12148,19 +12275,19 @@ msgstr ""
"Error durant l'enviament del fitxer via FTP.\n"
" Si us plau corregiu la configuraci de FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Si us plau, seleccioneu les dades per a restaurar..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Si us plau seleccioneu el medi per a la cpia..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Si us plau seleccioneu les dades per fer la cpia..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -12168,68 +12295,68 @@ msgstr ""
"No s'ha trobat el fitxer de configuraci \n"
"si us plau feu clic en Auxiliar o Avanat."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Sota Desenvolupament ... si us plau espereu."
#
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Cpia de seguretat dels fitxers del sistema"
#
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Cpia de seguretat de fitxers d'usuari"
#
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Cpia de seguretat d'altres fitxers"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Progrs Total"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "fitxers que s'estan enviant per FTP"
#
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Enviant els fitxers..."
#
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Fes la Cpia de Seguretat des del fitxer de configuraci"
#
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Veure la Configuraci de la Cpia de Seguretat"
#
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Auxiliar de Configuraci"
#
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Configuraci Avanada"
#
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Fes Cpia de Seguretat"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -12290,7 +12417,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -12304,7 +12431,7 @@ msgstr ""
" definir myhostname o mydomain en /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -12382,7 +12509,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
#, fuzzy
msgid ""
"restore description:\n"
@@ -12435,18 +12562,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft per DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -12476,7 +12603,7 @@ msgstr ""
" amb el programa; si no s aix, escriuviu a la Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12552,7 +12679,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12571,7 +12698,7 @@ msgstr ""
"dur abans d'enviar-la al servidor.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12593,7 +12720,7 @@ msgstr ""
"dades. s important de tenir cura i no modificar a m els \n"
"fitxers de cpia de seguretat.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12710,8 +12837,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Eines de consola"
@@ -12784,7 +12911,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12792,22 +12919,22 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Port"
#
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Post Desinstallaci"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Les instncies estaran disponibles desprs d'installar a %s"
@@ -12909,10 +13036,6 @@ msgstr "Auxiliar..."
msgid "Apply"
msgstr "Aplica"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Si us plau, espereu... s'est aplicant la configuraci"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Connectat"
@@ -13036,7 +13159,7 @@ msgstr "Nom del mdul"
msgid "Size"
msgstr "Mida"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -13101,12 +13224,12 @@ msgstr "Sortida"
msgid "Build the disk"
msgstr "Munta el disc"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -13115,12 +13238,12 @@ msgstr ""
"No hi ha cap suport al dispositiu %s.\n"
"Si us plau, inseriu-ne un."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "No es pot bifurcar: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13636,54 +13759,54 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuraci."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Grup de treball"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partici %s"
#
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Usuari"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Suprimeix"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Fet"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Afegeix un mdul"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
@@ -13691,107 +13814,107 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Afegiu una impressora"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Deselecciona Tot"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
#
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Elimina el seleccionat"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Accepta l'usuari"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versi: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Utilitza la detecci automtica"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Utilitza la detecci automtica"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Desa la selecci de paquets"
#
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Usuari"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Grup de treball"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "No s'ha detectat cap targeta de TV!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
#, fuzzy
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
@@ -13813,141 +13936,151 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "creaci de discs d'arrencada"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resoluci"
#
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Trieu un fitxer"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Nom de compartici"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Configuraci desprs de la installaci"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Surt"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Installa el sistema"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Configura els serveis"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "dispositiu"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "dispositiu"
+msgid "Save theme"
+msgstr "Installa el sistema"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Escolliu un monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
#
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Selecci del model d'impressora"
#
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Heu d'escollir/escriure una impressora/dispositiu!"
#
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "S'estan detectant els dispositius..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -14106,6 +14239,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "sintaxi: keyboarddrake [--expert] [teclat]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "sintaxi: keyboarddrake [--expert] [teclat]\n"
@@ -14135,13 +14275,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "No es pot iniciar l'actualitzaci en directe !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"El canvi est fet, per perqu sigui efectiu heu de sortir de la sessi "
"actual"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -14435,16 +14575,13 @@ msgstr ""
"Ara podeu scannejar documents utilitzant ``XSane'' des de Multimedia/Grfics "
"en el men d'aplicacions."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -14520,7 +14657,7 @@ msgstr "Installa actualitzacions del sistema"
msgid "Exit install"
msgstr "Surt de la installaci"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14770,6 +14907,21 @@ msgstr "Multimdia - Gravaci de CD"
msgid "Scientific Workstation"
msgstr "Estaci cientfica de treball"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Configuraci desprs de la installaci"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "El proxy ha de ser ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Surt"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -15454,9 +15606,6 @@ msgstr "Estaci cientfica de treball"
#~ msgid "Package List to Install"
#~ msgstr "Llista de Paquets a installar"
-#~ msgid "Setting security level"
-#~ msgstr "S'est establint el nivell de seguretat"
-
#
#~ msgid "Setting security user"
#~ msgstr "S'est establint l'usuari de seguretat"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 7be85d319..f249a041a 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-09-04 22:03-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n"
"Language-Team: Cymraeg <cy@li.org>\n"
@@ -89,24 +89,24 @@ msgstr "Ffurfweddu pob pen yn annibynnol"
msgid "Use Xinerama extension"
msgstr "Defnyddiwch estyniad Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ffurfweddu cerdyn \"%s\" %s yn unig"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree: %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,18 +117,18 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"mewn 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s"
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"mewn 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,12 +150,12 @@ msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (gyrrwr gosod dangoswr)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Arddull"
@@ -175,32 +175,32 @@ msgstr "Cydraniad"
msgid "Test"
msgstr "Prawf"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Dewisiadau"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Iawn"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Gadael"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -296,25 +296,25 @@ msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
msgid "Graphics card: %s"
msgstr "Cerdyn graffeg: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Diddymu"
@@ -390,11 +390,11 @@ msgstr "Gwasanaethwr XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Gyrrwr XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Rhyngwyneb graffigol wrth gychwyn"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -403,7 +403,7 @@ msgstr ""
"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar l cychwyn\n"
"Hoffech chi i XFree ddechrau wedi i chi ail-gychwyn?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -423,7 +423,7 @@ msgstr ""
"\n"
"Ydy'r nodwedd hon gennych?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Pa norm mae eich teledu'n ei ddefnyddio?"
@@ -495,7 +495,7 @@ msgstr "Cryno"
msgid "compact"
msgstr "cryno"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Modd fideo"
@@ -503,17 +503,17 @@ msgstr "Modd fideo"
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Cyfrinair"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
@@ -548,14 +548,14 @@ msgid ""
msgstr ""
"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cydfynd"
@@ -597,7 +597,7 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -605,148 +605,148 @@ 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_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ychwanegu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Gorffen"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Newid"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Systwmau Gweithredu eraill (SunOS..)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Systemau gweithredu Eraill (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Delwedd"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Gwraidd"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Atodi"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Darllen-ysgrifennu"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabl"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Anniogel"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Rhagosodedig"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Maint intrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Tynnu cofnod"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Nid yw label gwag yn cael ei ganiatu"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Rhaid enwi delwedd cnewyllyn"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Rhaid pennu rhaniad gwraidd"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Wedi canfod rhyngwynebau %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Oes gennych un arall?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Oes gennych unrhyw rhyngwyneb %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Na"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Iawn"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Gweler gwybodaeth am galedwedd"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Gosod gyrrwr %s ar gyfer cerdyn %s "
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modiwl %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -756,7 +756,7 @@ msgstr ""
"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x, e.e. "
"'0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -767,17 +767,17 @@ msgstr ""
"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
"e.e, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Dewisiadau modiwl:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pa yrrwr %s ddylwn drio?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -797,15 +797,15 @@ msgstr ""
"unrhyw\n"
"ddifrod."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Atoholi"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Enwi dewisiadau"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -814,62 +814,62 @@ msgstr ""
"Methodd llwytho modiwl %s\n"
"Hoffech chi drio eto gyda pharamedrau eraill?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "caniatu \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "mynediad i offer rhwydwaith"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "mynediad i offer crynhoad"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Mae'r cyfrinair yn rhy syml"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Ychwanegu defnyddiwr"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -878,32 +878,32 @@ msgstr ""
"Rhowch enw defnyddiwr\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Derbyn defnyddiwr"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Enw cywir"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Enw defnyddiwr"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Cragen"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Eicon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Awtomewngofnodi"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -912,19 +912,19 @@ msgstr ""
"defnyddiwr\n"
"Hoffech chi wneud hyn?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Dewiswch iaith i'w defnyddio."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -934,37 +934,37 @@ msgstr ""
"pa iaith yr hoffech ei osod. Byddant ar gael pan fydd eich gosodiad\n"
"wedi ei gwblhau a phan fyddwch yn ailgychwyn eich system."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Popeth"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Caniatu pob defnyddiwr"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Dim rhannu"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Medrwch allforio gan ddefnyddio NFS neu Samba. Pa un hoffech chi ei "
"ddefnyddio"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -978,11 +978,11 @@ msgstr ""
"\n"
"\"Addasu\" caniatu cyfran i'r defnyddwyr.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -990,31 +990,31 @@ msgstr ""
"Mae rhannu yn l defnyddiwr yn defnyddio grwp \"rhannu ffeiliau\" .\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Croeso i Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Gwael"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Safonol"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Uchel"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Uwch"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoia"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1024,7 +1024,7 @@ msgstr ""
"ddefnyddio ond mae'n sensitif iawn: rhaid peidio defnyddio'r peiriant i'w\n"
"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1032,7 +1032,7 @@ msgstr ""
"Mae'r cyfrinair wedi ei alluogi, ond ni argymhellir ei ddefnyddio fel "
"cyfrifiadur rhwydwaith."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1040,7 +1040,7 @@ msgstr ""
"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
"cael ei gysylltu 'r Rhyngrwyd fel cleient."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1048,7 +1048,7 @@ msgstr ""
"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
"bob nos"
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1064,7 +1064,7 @@ msgstr ""
"cysylltiad gan amryw o gleientiaid. Sylwer: os maei cleient yn unig yw eich "
"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1072,33 +1072,33 @@ msgstr ""
"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaedig ac "
"mae nodweddion diogelwch ar eu huchaf."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "Dewisiadau Sylfaenol DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Dewiswch lefel diogelwch"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Lefel diogelwch"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Gweinyddwr Diogelwch (mewngfnodi neu e-bost)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1109,7 +1109,7 @@ msgstr ""
"arall)"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1126,58 +1126,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Croeso i GRUB, y dewiswr systemau gweithredu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Defnyddiwch allweddi %c a %c i ddewis pa gofnod i'w amlygu."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Gwasgwch Enter i gychwyn y system weithredu, 'g' i olygu'r"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "gorchmynion cyn cychwyn, neu 'c' am y llinell orchymyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Bydd y cofnod wedi ei amlygu'n cychwyn yn awtomatig ymhen %d eiliad."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Bwrdd Gwaith"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Dewislen Cychwyn"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y llwythwr cychwyn ar raniad %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "nid oes cymorth ar gael eto.\n"
@@ -1229,63 +1229,63 @@ msgstr "Modd Lilo/grub"
msgid "Yaboot mode"
msgstr "Modd Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Gosod themu"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Dangos thema yn y consol"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Creu thema newydd"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Cadw %s i %s.old wrth gefn"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Gwall"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "methu cadw neges lilo wrth gefn"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Copo %s i %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "methu newid neges lilo"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Heb ganfod neges lilo"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Methu ysgrifennu /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Ysgrifennu %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1293,17 +1293,17 @@ msgstr ""
"Methu ysgrifennu /etc/sysconfig/bootsplash.\\\\\n"
"Heb ganfod y ffeil"
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Methu cychwyn mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1312,24 +1312,24 @@ msgstr ""
"Cychwyn \"lilo\" fel gwraidd ar y linell orchymyn i gwblhau gosod thema "
"LiLo'n llawn."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Ail gychwyh 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Nodyn"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Themu LiLo a Croeso Cychwyn wedi eu gosod yn llwyddiannus"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Methodd gosod y thema!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1338,21 +1338,21 @@ msgstr ""
"Rydych yn defnyddio %s fel rheolwr cychwyn.\n"
"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Ffurfweddu"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Dewis sgrin croeso"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Themu"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1366,44 +1366,44 @@ msgstr ""
"mae modd eu dewis\n"
"ar wahn"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Sgrin Lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Croeso Cychwyn"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Modd system"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Cychwyn yr amgylchedd graffigol wrth gychwyn eich system"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, bwrdd gwaith)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Iawn"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "maethu agor/etc/inittab ar gyfer darllen: %s"
@@ -1500,50 +1500,58 @@ msgstr "Awstria"
msgid "United States"
msgstr "Yr Unol Daleithiau"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Newydd"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Dad-osod"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Gosod"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Gwasanaethwr"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Pwynt gosod"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Rhowch URL gwasanaethwr WebDAV"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Gwasanaethwr:"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Pwynt gosod:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
@@ -1631,7 +1639,7 @@ msgstr "Gwag"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Arall"
@@ -1772,7 +1780,7 @@ msgstr ""
"Nid yw'r tabl rhaniad wrth gefn yr un maint\n"
"Parhau?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Rhybudd"
@@ -2335,7 +2343,7 @@ msgstr ""
"Rhowch eich enw defnyddiwr, cyfrinair ac enw parth i gael mynediad i'r "
"gwesteiwr."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Enw defnyddiwr"
@@ -2347,23 +2355,23 @@ msgstr "Parth"
msgid "Search servers"
msgstr "Chwiliwch am wasanaethwyr"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "methodd fformatio %s o %s"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd gosod rhaniad %s yng nghyfeiriadur %s"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadosod %s: %s"
@@ -2449,46 +2457,109 @@ msgstr "Dim i'w wneud"
msgid "Error opening %s for writing: %s"
msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "Dim gyrwyr eraill"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr "Nid oes gyrrwr OSS/ALSA hysbys ar gyfer eich cerdyn sain (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Furfweddiad sain"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Yma medrwch ddewis gyrrwr arall (un ai OSS neu ALSA) ar gyfer eich cerdyn "
"sain (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Gyrrwr:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Cymorth"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Arhoswch...Gosod y ffurfweddiad"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Arhoswch"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Dim gyrrwr hysbys"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Nid oes gyrrwr hysbys ar gyfer eich cerdyn sain (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Gyrrwr anhysbys"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2616,7 +2687,8 @@ msgid "/_Quit"
msgstr "/_Gadael"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Cymorth"
@@ -2637,14 +2709,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Adrodd ar Wallau"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Ynghylch..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Ynghylch Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2652,56 +2728,53 @@ msgstr ""
"Dyma HardDrake, offeryn ffurfweddu caledwedd Mandrake.\n"
"Fersiwn:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Awdur"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 fersiwn "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Caledwedd canfyddwyd"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Gwybodaeth"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Modd ffurfweddu"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Rhedeg offeryn ffurfweddu"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Canfod ar waith"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Arhoswch"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Mae modd i chi ffurfweddu pob paramedr o'r modiwl yma"
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Rhedeg \"%s\"..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "cynradd"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "eilradd"
@@ -4659,7 +4732,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Rhaid fformatio %s hefyd"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4682,7 +4755,7 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4696,20 +4769,20 @@ msgstr ""
"\n"
"Ydych chi am dynnu'r pecynnau hyn?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Methu defnyddio darlledu heb barth NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4717,12 +4790,12 @@ msgstr ""
"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Gwall wrth ddarllen ffeil %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4964,7 +5037,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Croeso i %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Does dim gyrrwr disg meddal ar gael"
@@ -4994,11 +5067,11 @@ msgstr "Gosod Dosbarth"
msgid "Please choose one of the following classes of installation:"
msgstr "Dewiswch un o'r dosbarthiadau canlynol o osodiad::"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Dewis y Grwp Pecyn"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Dewis pecynnau unigol."
@@ -5074,7 +5147,7 @@ msgstr "Dangoswch y pecynnau dewis awtomatig"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Gosodiad"
@@ -5094,7 +5167,7 @@ msgstr "Gosodiad lleiaf"
msgid "Choose the packages you want to install"
msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Gosod"
@@ -5121,17 +5194,17 @@ msgid "Installing package %s"
msgstr "Gosod pecynnau %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Derbyn"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Gwrthod"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5146,16 +5219,16 @@ msgstr ""
"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Mynd yn ein blaen beth bynnag?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Roedd gwall wrth drefnu pecynnau"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Digwyddodd gwall wrth osod pecyn"
@@ -5281,7 +5354,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5471,7 +5544,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Ydych chi'n siwr eich bod am wrthod y drwydded?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Allweddell"
@@ -5680,11 +5753,11 @@ msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
msgid "Selected size is larger than available space"
msgstr "Mae'r maint ddewiswyd yn fwy na'r lle ar gael"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Math o osodiad"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5692,19 +5765,19 @@ msgstr ""
"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Gyda X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Gyda dogfennaethelfennol (argymhellir!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5714,16 +5787,16 @@ msgstr ""
"Os nad oes gennych un ohonynt, Cliciwch Diddymu.\n"
"Os mae dim ond rhai CDau sydd ar goll, yna cliciwch Iawn."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom wedi ei labelu \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Paratoi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5732,21 +5805,21 @@ msgstr ""
"Gosod pecyn %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Ffurfweddiad l osod"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Rhowch y disg meddal Diweddaru Modiwlau yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5821,7 +5894,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5840,155 +5913,155 @@ msgstr ""
"\n"
"Ydych chi am osod y diweddariadau?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Cysylltu 'safle Mandrake Linux i estyn rhestr o'r drychau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Cysylltu 'r drych i estyn y rhestr o becynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Cloc caledwedd wedi ei osod i GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Gweinydd NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Gwasanaethwr CUPS pell"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nid oes argraffydd"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "A oes gennych gerdyn sain ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Rhedwch \"sndconfig\" wedi'r gosodiad i ffurfweddu'ch cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Crynodeb"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Llygoden"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Cylchfa amser"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Argraffydd"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Cerdyn ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Cerdyn Teledu"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Parth Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Ffeiliau lleol"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Gosod cyfrinair gwraidd"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Dim cyfrinair"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilysu"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "Sail dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Gwasanaethwr LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Parth NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Gwasanaethwr NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6015,19 +6088,19 @@ msgstr ""
"system.\n"
"Bydd y gorchymyn 'wbinfo -t' yn gwirio a yw eich cyfrinachau dilysu'n addas."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Dilysu Parth Windows"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Enw Defnyddiwr Gweinyddiaeth Parth"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Cyfrinair Gweinyddol y Parth"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6058,19 +6131,19 @@ msgstr ""
"gyrrwr\n"
" cyntaf a chliciwch \"Iawn\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Gyrrwr disg meddal cyntaf"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Ail ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Hepgor"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6095,7 +6168,7 @@ msgstr ""
"greu disg cychwyn ar gyfer eich system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6109,28 +6182,28 @@ msgstr ""
"bydd creu disg cychwyn ar ddisg meddal 1.44Mb'n debygol o fethu,\n"
"oherwydd mae XFS yn gofyn am yrrwr mawr iawn)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Nid oes gyrrwr disg meddal ar gael"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Dewiswch y gyrrwr disg meddal i'w ddefnyddio i greu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Rhowch ddisg meddal yn %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Creu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Paratoi llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6144,11 +6217,11 @@ msgstr ""
"rhaid defnyddio BootX i gychwyn\n"
"eich peiriant."
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Ydych chi eisiau defnyddio aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6156,15 +6229,15 @@ msgstr ""
"Gwall gosod aboot, \n"
"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Gosod llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Methodd gosod llwythwr cychwyn. Digwyddodd y gwall canlynol:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6182,17 +6255,17 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y llwythwr cychwyn."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6202,7 +6275,7 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gorffen?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6234,15 +6307,15 @@ msgstr ""
"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau l osod\n"
"yr Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6257,15 +6330,15 @@ msgstr ""
"\n"
"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Awtomeiddwyd"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ail chwarae"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Cadw'r dewis becynnau"
@@ -6301,14 +6374,14 @@ msgstr "Uwch"
msgid "Basic"
msgstr "Elfennol"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Cynt"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Nesaf"
@@ -6754,7 +6827,7 @@ msgstr "Bysell \"Windows\" de"
msgid "Circular mounts %s\n"
msgstr "Gosodiadau cylch %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
@@ -6891,15 +6964,15 @@ msgstr "dim"
msgid "No mouse"
msgstr "Dim llygoden"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Profwch y llygoden"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "I ysgogi'r llygoden,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "SYMUDWCH YR OLWYN!"
@@ -6935,11 +7008,11 @@ msgstr "Cau'r goeden"
msgid "Toggle between flat and group sorted"
msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Cysylltu 'r We"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6949,23 +7022,19 @@ msgstr ""
"Mae rhai cysylltiadau'n defnyddio pptp, a rhai dhcp.\n"
"Os nad ydych yn gwybod pa un, dewiswch pppoe."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "usb Alcatel Speedtouch"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "defnyddiwch dhccp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "defnyddiwch pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "defnyddiwch pptp"
@@ -7066,7 +7135,7 @@ msgstr ""
msgid "no network card found"
msgstr "heb ganfod cerdyn rhwydwaith"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Ffurfweddu'r rhwydwaith"
@@ -7082,15 +7151,15 @@ msgstr ""
"yr enw gwesteiwr i weithio. Dylai eich enw gwesteiwr\n"
"fod yn enw cymhwysol llawn megis \"fymlwch.fynesg.fyco.com\""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Enw gwesteiwr"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Dewin Ffurfweddu'r Rhwydwaith"
@@ -7138,8 +7207,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Hen ffurfweddiad (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Ffurfweddiad ISDN"
@@ -7175,23 +7244,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Pa brotocol ydych chi eisiau ei ddefnyddio?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Pa fath o gerdyn sydd gennych?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Dim syniad"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7204,19 +7278,19 @@ msgstr ""
"\n"
"Os oes gennych gerdyn PCMCIA, rhaid i chi wybod irq ac io eich cerdyn.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Peidio"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Parhau"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Pa un yw eich cerdyn IDSN?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7224,7 +7298,7 @@ msgstr ""
"Rwyf wedi canfod cerdyn IDSN, ond nid wyf yn gwybod pa fath. Dewiswch un "
"cerdyn PCI ar y sgrin nesaf."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Heb ganfod cerdyn PCI ISDN. Dewiswch un o'r sgrin nesaf."
@@ -7276,7 +7350,7 @@ msgstr "Gwasanaethwr DNS Cyntaf (dewisol)"
msgid "Second DNS Server (optional)"
msgstr "Ail Wasanaethwr DNS (dewisol)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7284,7 +7358,7 @@ msgstr ""
"\n"
"Medrwch ddatgysylltu neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7292,11 +7366,11 @@ msgstr ""
"\n"
"Medrwch ailffurfweddu eich cysylltiad"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Rydych wedi eich cysylltu 'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7304,32 +7378,32 @@ msgstr ""
"\n"
"Medrwch gysylltu 'r Rhyngrwyd neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Nid ydych wedi eich cysylltu 'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Cysylltu"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Dadgysylltu"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Ffurfweddu'r gysylltiad"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Cysylltiad 'r rhyngrwyd a'i ffurfweddiad "
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Rydym am ffurfweddu cysylltiad %s"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7348,12 +7422,12 @@ msgstr ""
"\n"
"Pwyswch Iawn i barhau."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ffurfweddiad y Rhwydwaith"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7365,7 +7439,7 @@ msgstr ""
"Cliciwch Iawn i gadw eich ffurfweddiad, neu ddileu i ail ffurfweddi eich "
"cysylltiad Rhyngrwyd a Rhwydwaith.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7377,72 +7451,72 @@ msgstr ""
"Rydym ar fin ffurfweddi eich cysylltiad rhyngrwyd/rhwydwaith.\n"
"Os nad ydych am ddefnyddio awto ganfod, dad-diciwch y blwch dewis.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Dewiswch broffil i'w ffurfweddu"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Defnyddio awto ganfod"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Modd Uwch"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Canfod dyfeisiadau..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Cysylltiad modem arferol"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "canfyddwyd ar borth %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Cysylltiad ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "canfyddwyd %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Cysylltiad ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "canfyddwyd ar rhyngwyneb %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "canfyddwyd cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "cysylltiad LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "cerdyn ethernet wedi ei ganfod"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Dewiiwch y math o gysylltiad rydych am ei ffurfweddu"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7452,23 +7526,23 @@ msgstr ""
"Dewiswch ba un rydych am ei ddefnyddio.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Cysylltiad 'r Rhyngrwyd"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Ydych chi eisiau agor y cysylltiad wrth gychwyn y cyfrifiadur?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Ffurfweddiad y rhwydwaith"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Rhaid ail gychwyn y rhwydwaith"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7479,7 +7553,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7489,7 +7563,7 @@ msgstr ""
"Bydd y ffurfweddiad yn cael ei osod ar eich system\n"
"\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7498,7 +7572,7 @@ msgstr ""
"amgylchedd X i osgoi unrhyw anawsterau'n perthyn i enwau gwesteiwr.\n"
"."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7508,7 +7582,7 @@ msgstr ""
"Profwch eich cysylltiad drwy net_monitor neu mcc. Os nad yw eich cysylltiad "
"yn gweithio, efallai y byddwch eisiau ailgychwyn y ffurfweddiad"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7520,7 +7594,7 @@ msgstr ""
"Derbyniwch y cynnig i gadw'r ddyfais wedi ei ffurfweddi.\n"
"Bydd newid y meysydd islaw'n newid y ffurfweddiad."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7530,42 +7604,42 @@ msgstr ""
"Dylai pob eitem ei roi fel cyfeiriad IP nodiant collnod degymol\n"
"(e.e.1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Ffurfweddu dyfais rhwydwaith %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (gyrrwr %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Cyfeiriad IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP awtomatig"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Cychwyn y peiriant"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7577,42 +7651,52 @@ msgstr ""
"megis \"fymlwch.fynesg.fyngho.com\".\n"
"Medrwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Gwasanaethwr DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Mynedfa (e.e. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dyfais mynedfa"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Ffurfweddiad dirprwyon"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Dirprwy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Dirprwy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Dilynnwch cyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Dylai dirprwyon fod yn gyfanrif!"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Dylai rhif porth fod yn ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Dylai'r URL ddechrau gyda 'ftp' neu 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9213,7 +9297,7 @@ msgstr "Argraffu ar argraffydd \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9780,10 +9864,6 @@ msgstr ""
"Llanwxh y gwybodaeth dirprwy ftp\n"
"Gadewch yn wag os nad ydych eisiau dirprwy ftp"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Dylai'r URL ddechrau gyda 'ftp' neu 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9831,6 +9911,41 @@ msgstr "methodd mkraid (efallai bod raidtools ar goll)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Dim digon o raniadau ar gyfer RAID lefel %d\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Lefel diogelwch:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Lefel diogelwch"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Gweinyddwr Diogelwch:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr "(Rhagosodedig)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Dewiswch lefel diogelwch"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Arhoswch, paratoi'r gosodiad"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Cychwynnwch system sain ALSA (Pensaernaeth Sain Linux Uwch)"
@@ -10146,7 +10261,7 @@ msgstr "Rhyngrwyd"
msgid "File sharing"
msgstr "Rhannu Ffeiliau"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "System"
@@ -10238,7 +10353,7 @@ msgstr "Cael y mwyaf o'r Rhyngrwyd"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10295,7 +10410,7 @@ msgstr "Rhyngwynebau defnyddwyr"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10321,7 +10436,7 @@ msgstr "Trowch eich peiriant i fod yn wasanaethwr dibynadwy"
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Trowch eich peiriant i fod yn wasanaethwr pwerus gydag ychydig gliciau ar "
@@ -10341,7 +10456,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
"Mae'r mur cadarn hwn yn cynnwys nodwedd rhwydwaith i'ch galluogi i gyflawni "
@@ -10358,7 +10473,7 @@ msgstr "Y siop MandrakeSoft swyddogol"
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Mae amrediad eang o ddarpariaeth Linux, yn ogystal chynigion arbennig ar "
"gynnyrch a 'difyrrwch', ar gael ar-lein yn ein e-siop"
@@ -10412,8 +10527,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -10450,11 +10565,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Gosod pecynnau..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
@@ -10495,16 +10610,6 @@ msgstr "Ychwanegu/Diddymu Defnyddwyr"
msgid "Add/Del Clients"
msgstr "Ychwanegu/Dileu Cleientiaid"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Cymorth"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Disg Meddal Cychwyn"
@@ -10553,48 +10658,64 @@ msgstr "Pob Defnyddiwr-->"
msgid "<-- Del User"
msgstr "<-- Dileu Defndyddiwr"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Delweddau Cychwyn y Rhwyd"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Ychwanegu Cleient -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<--Diddymu Cleient"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Ffurfweddu dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Ffurfweddiad Uwch"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Ysgrifenu ffurfweddu"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Mewnosodwch ddisg meddal:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Maethu cael mynediad i'r disg meddal!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Mae modd tynnu'r disg meddal nawr"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Does dim gyrrwr disg meddal ar gael!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "%s yw'r delwedd ISO etherboot"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Aeth rhywbeth o'i le! - ydy mkisofs wedi ei osod?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Mae angen creu /etc/dhcpd.conf yn gyntaf"
@@ -10738,12 +10859,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Cyfanswm y cynnydd"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10756,41 +10877,41 @@ msgstr ""
"Warning: If you've already done this process you'll probably\n"
" need to purge the entry from authorized_keys on the server."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Bydd hyn yn cymryd amser i gynhyrchu'r allweddi"
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "GWALL; methu taenu %s."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr "Dim cais am gyfrinair ar %s ym mhorth %s"
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, c-format
msgid "Bad password on %s"
msgstr "Cyfrinair gwallus yn %s"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr "Gwrthodwyd caniatd wrth drosglwyddo %s i %s"
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr "Methu canfod %s ar %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr "Nid yw %s yn ymateb"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10807,64 +10928,64 @@ msgstr ""
"ssh -i %s %s\\@%s\n"
"heb dderbyn cais am gyfrinair"
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "Mae safle pell WebDAV eisioes wedi cydamseru!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "Method trosglwyddiad WebDaAV!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Dim CDR/DVDR yn y gyrrwr!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr "Nid yw'n ymddangos fel cyfrwng cofnodi."
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr "Nid cyfrwng dileuadwy!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Bydd yn cymryd ychydig o amser i ddileu'r cyfrwng."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr "Anhawsterau caniatd wrth gael mynediad i'r CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr "Dim tp yn %s!"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Ffeiliau system wrth gefn"
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Cynnydd Disg Caled wrth Gefn..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Cadw wrth gefn ffeiliau eraill..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr "Dim newid i'r ffeil wrth gefn"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10875,7 +10996,7 @@ msgstr ""
"Gweithgaredd Drakbackup drwy %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10884,7 +11005,7 @@ msgstr ""
"rhestr ffeil yrrwyd gan FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10894,7 +11015,7 @@ msgstr ""
" Anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth gefn "
"drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10904,7 +11025,7 @@ msgstr ""
"Gweithgaredd Drakbackup drwy CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10914,24 +11035,24 @@ msgstr ""
"Gweithgaredd Drakbackup drwy dp:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Gwall wrth anfon e-bost. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr "Methu creu catalog!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Dewis ffeiliau"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Ychwanegu'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10939,26 +11060,26 @@ msgstr ""
"\n"
"Gwiriwch pob dewis sydd angen arnoch.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Mae'r dewisiadau hyn yn medru cadw wrth gefn ac adfer pob ffeil yn eich "
"cyfeiriadur /etc.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Cadw wrth gefn cynyddol (peidio disodli hen ffeiliau wrth gefn)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10966,43 +11087,43 @@ msgstr ""
"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
"o'ch cyfeiriadur /etc."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Gwiriwch pob defnyddiwr rydych am eu cynnwys yn eich cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Peidio cynnwys storfa'r porwr"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Defnyddio Cadw wrth Gefn Cynyddol (peidio disodli hen gadw wrth gefn)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Tynnu'r Dewis"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Defnyddwyr"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "Defnyddiwch cysylltiad rhwydwaith i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr "Dull Rhwyd:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr "Defnyddiwch Expect ar gyfer SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -11010,7 +11131,7 @@ msgstr ""
"Creu/Trosglwyddo\n"
"allweddi wrth gefn ar gyfer SSH"
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -11018,15 +11139,18 @@ msgstr ""
"Trosglwyddo \n"
"Nawr"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr "Allewddi yn eu lle yn barod"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Rhowch enw'r gwesteiwr neu'r IP"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -11034,27 +11158,27 @@ msgstr ""
"Rhowch y cyfeiriadur(neu fodiwl) i osod y cadw\n"
"wrth gefn ar y gwesteiwr hwn."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Rhowch eich mewngofnod"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Rhowch eich cyfrinair"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Cofiwch y cyfrinair"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr "Angen enw gwesteiwr, enw defnyddiwr a chyfrinair"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Defnyddiwch yr CD/DVDROM i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -11064,35 +11188,35 @@ msgstr ""
"(Gwasgwch Enter i drosglwyddo'r gosodiadau i feysydd eraill.\n"
"Nid yw'r maes hwn yn angenrheidiol, dim ond offeryn i lanw'r ffurflen.)"
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Dewiswch maint eich gofod CD/DVD"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr "Gwiriwch os ydych yn defnyddio CD amlsesiwn"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Gwiriwch os ydych am ddileu eich cyfrwng RW(Sesiwn 1af)"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr "Dileu Nawr"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDR"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDRAM"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11100,33 +11224,33 @@ msgstr ""
"Rhowch enw dyfais eich Ysgrifennwr CD\n"
"ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Heb ddiffinio dyfais CD!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Defnyddiwch dp i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Rhowch enw dyfais i'w ddefnyddio ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr ""
"Gwiriwch os ydych am ddefnyddio'r dyfais nad yw'n mynd nl i'e ddechrau."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr "Gwiriwch os ydych am ddileu eich tp cyn y cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
msgstr "Gwiriwch os ydych am dynnu eich tp ar l y cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11134,55 +11258,55 @@ msgstr ""
"Rhowch y maint mwyaf\n"
"i'w ganiatu ar gyfer Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Rhwydwaith"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Disg Caled / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Tp"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "bob awr"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "bob dydd"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "bob wythnos"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "bob mis"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Defnyddiwch ddaemon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11190,7 +11314,7 @@ msgstr ""
"Dewiswch faint o amser\n"
"fydd rhwng pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11198,7 +11322,7 @@ msgstr ""
"Dewiswch y cyfrwng ar\n"
"gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -11208,71 +11332,71 @@ msgstr ""
"\n"
"Sylwer bod yr holl gyfrwn \"gwe\" yn defnyddio'r ddisg caled."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr "Dileu ffeiliau tar y Disg Caled wedi cadw cyfrwng arall wrth gefn."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Beth"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Lle"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Pryd"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Dewisiadau Eraill"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Ffurfweddiad Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "ar Ddisg Caled"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "ar draws Rhwydwaith"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "ar CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr "ar Ddyfais Tp"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "System cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Defnyddwyr Cadw wrth Gwfn"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Dewis defnyddwyr gyda llaw"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11280,7 +11404,7 @@ msgstr ""
"\n"
"Ffynhonell Cadw wrth Gefn:\n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11288,7 +11412,7 @@ msgstr ""
"\n"
"- Ffeiliau System: \n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11296,7 +11420,7 @@ msgstr ""
"\n"
"- Ffeiliau Defnyddiwr:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11304,7 +11428,7 @@ msgstr ""
"\n"
"- Ffeiliau Eraill: \n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11313,7 +11437,7 @@ msgstr ""
"\n"
"Cadw ar Ddisg caled ar lwybr: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
@@ -11321,7 +11445,7 @@ msgstr ""
"\n"
"- Dileu ffeiliau tar y disg caled wedi'r cadw wrth gefn.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -11329,20 +11453,20 @@ msgstr ""
"\n"
"-Llosgi i CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr "ar ddyfais: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr "(aml-sesiwn)"
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
@@ -11351,12 +11475,12 @@ msgstr ""
"\n"
"- Cadw i dp ar ddyfais: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tDileu=%s"
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
@@ -11365,7 +11489,7 @@ msgstr ""
"\n"
"- Cadw drwy %s ar westeiwr: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11374,7 +11498,7 @@ msgstr ""
"\t\t enw defnyddiwr:%s\n"
"\t\t ar lwybr: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11382,19 +11506,19 @@ msgstr ""
"\n"
"-Dewisiadau:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11403,39 +11527,39 @@ msgstr ""
"\n"
"- Daemon (%s) i gynnwys :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Disg Caled.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr "\t-Tp \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Rhwydwaith drwy SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Rhwydwaith drwy rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Rhwydwaith drwy webday.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11443,7 +11567,7 @@ msgstr ""
"Rhestr o ddata i'w adfer:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11451,104 +11575,104 @@ msgstr ""
"Rhestr o ddata llwgr:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Mae eich dewis data wedi ei "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Ei adfer yn Llwyddiannus ar %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Adfer y Furfweddiad"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "Iawn i adfer ffeiliau eraill"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Rhestr defnyddwyr i'w adfer ( dim ond y diweddaraf yn l y defnyddwyr, sy'n "
"bwysig )"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "dewiswch y data i'w adfer"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Cysylltiad FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Cysylltiad Diogel"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Adfer o'r Ddisg Caled."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Rhowch y cyfeiriadur lle mae'r ffeiliau wrth gefn yn cael eu cadw"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Dewis cyfrwng arall i adfer ohono"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Cyfrwng Arall"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Adfer y system"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Adfer Defnyddwyr"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Adfer Arall"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "dewis llwybr arall i adfer ( yn lle / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Gwnewch cadw wrth gefn newydd cyn adfer ( ar gyfer cadw wrth gefn cynyddol "
"yn unig )"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
@@ -11556,7 +11680,7 @@ msgstr ""
"Adfer Cofnod\n"
"Catalog Ddewiswyd"
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
@@ -11564,7 +11688,7 @@ msgstr ""
"Adfer y Dewis\n"
"Ffeiliau"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
@@ -11572,12 +11696,12 @@ msgstr ""
"Newid\n"
"Llwybr Adfer"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr "Heb ganfod y ffeiliau wrth gefn yn %s."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -11586,16 +11710,16 @@ msgstr ""
"Rhowch yr CD gyda label cynnwys%s\n"
"yn yr gyrrwr CD o dan bwynt gosod /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
msgstr "Adfer o'r CD"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "Nid yr label CD cywir. Disg wedi ei labelu %s."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -11604,102 +11728,102 @@ msgstr ""
"Rhowch y tp gyda label cynnwys%s\n"
"yn yr gyrrwr tp %s"
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
msgstr "Adfer o Dp"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "Nid yr label tp cywir. Tp wedi ei labelu %s."
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
msgstr "Adfer drwy'r Rhwydwaith"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Adfer drwy Protocol Rhwydwaith: %s"
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "Enw Gwesteiwr"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr "Llwybr Gwesteiwr neu Fodwil "
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
msgstr "Mae angen cyfrinair"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
msgstr "Mae angen enw defnyddiwr"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
msgstr "Mae angen enw gwesteiwr"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr "Llwybr neu Fodiwl angenrheidiol"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr "Adferwyd ffeiliau..."
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
msgstr "Methodd Adfer..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Adfer pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Adfer Dewisol"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr "CD yn ei le - ewch ymlaen"
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr "Pori i'r ystorfa newydd adferwyd"
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
msgstr "Adfer o'r Catalog"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
msgstr "Adfer Cynnydd"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Cynt"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gorffen"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Adeiladu Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Adfer"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -11709,7 +11833,7 @@ msgstr ""
" chafodd eich adroddiad e-bost mo'i anfon\n"
" Ffurfweddwch eich sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -11717,7 +11841,7 @@ msgstr ""
"Mae'r pecynnau canlynol i'w gosod:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11725,19 +11849,19 @@ msgstr ""
"Gwall wrth anfon ffeil drwy FTP.\n"
" Cywirwch eich ffurfweddiad FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Dewiswch y data i'w adfer..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Dewiswch y data i'w gadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11745,59 +11869,59 @@ msgstr ""
"Ni chanfyddwyd y ffeil ffurfweddu \n"
"cliciwch Dewin neu Uwch."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "O dan ddatblygiad...arhoswch."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Ffeiliau System Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Cadw'r ffeiliau eraill wrth gefn"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Cyfanswm Cynydd"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "anfon ffeil drwy FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Anfon ffeiliau..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Ffurfweddiad y Dewin"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Ffurfweddiad Uwch"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Cadw wrth Gefn Nawr"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11855,7 +11979,7 @@ msgstr ""
" ...\n"
" \n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11864,7 +11988,7 @@ msgid ""
"\n"
msgstr "\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11941,7 +12065,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11990,20 +12114,20 @@ msgstr ""
"\\n\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Hawlfraint(H 2001 MandrakeSoft gan DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" yn diweddaru 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -12035,7 +12159,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
"MA 02111-1307, USA"
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12111,7 +12235,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12130,7 +12254,7 @@ msgstr ""
"cyn ei anfon i'r gwasanaethwr.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12152,7 +12276,7 @@ msgstr ""
"bwysig eich bod yn ofalus a pheidio newid y ffeiliau\n"
"data wrth gefn gyda llaw.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12278,8 +12402,8 @@ msgid "Synchronization tool"
msgstr "Offeryn Cydamseru"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Offer Unigol"
@@ -12344,7 +12468,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12353,24 +12477,24 @@ msgstr ""
"\n"
"\n"
"I gyflwyno adroddiad gwall, cliciwch ar y botwm adroddiad.\n"
-"Bydd hyn yn agor ffenestr porwr gwe yn https://www.bugzilla.com\n"
+"Bydd hyn yn agor ffenestr porwr gwe yn https://drakbug.mandrakesoft.com\n"
" lle welwch ffurflen i'w llenwi. Bydd yr wybodaeth rhowch arno'n cael ei\n"
"drosglwyddo i'r gwasanaethwr\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Adroddiad"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Heb ei osod"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "cysylltwyd dewin Bugzilla..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Dim porwr ar gael! Gosodawch un"
@@ -12471,10 +12595,6 @@ msgstr "Dewin..."
msgid "Apply"
msgstr "Gosod"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Arhoswch...Gosod y ffurfweddiad"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Wedi cysylltu"
@@ -12597,7 +12717,7 @@ msgstr "Enw'r modiwl"
msgid "Size"
msgstr "Maint"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12662,12 +12782,12 @@ msgstr "Allbwn"
msgid "Build the disk"
msgstr "Adeiladu'r ddisg"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Gwnewch yn siwr fod y deunydd ar gael ar gyfer y ddyfais %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12676,12 +12796,12 @@ msgstr ""
"Does dim cyfrwng neu mae wedi ei amddiffyn rhag ysgrifennu i'r dyfais %s.\n"
"Rhowch un i mewn.."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Methu fforchio: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13168,159 +13288,159 @@ msgstr ""
"\n"
"Cliciwch Ffurfweddu i gychwyn y dewin gosod."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Grwp gwaith"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "rhaniad %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Defnyddiwr"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Dileu"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Gorffen"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Ychwanegu modiwl"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Ychwanegu argraffydd newydd"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Dad ddewis Popeth"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr ""
"Adfer y Dewis\n"
"Ffeiliau"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr "pori"
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Derbyn defnyddiwr"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Fersiwn: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Porth"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Defnyddio awto ganfod"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Defnyddio awto ganfod"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Dewis sgrin croeso"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Defnyddiwr"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Grwp gwaith"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
msgstr "Heb ganfod Cerdyn Sain!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13340,123 +13460,146 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr "i weithio'n iawn mae angen ImageMagick"
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
msgstr "creu'r cam cyntaf"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
msgstr "cydraniad terfynnol"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
msgstr "dewis ffeil delwedd"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
msgid "Theme name"
msgstr "Enw Thema"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr "make bootsplash step 2"
-
-#: ../../standalone/draksplash_.c:82
-msgid "go to lilosplash configuration"
-msgstr "mynd i fffurfweddiad lilosplash"
-
-#: ../../standalone/draksplash_.c:83
-msgid "quit"
-msgstr "gadael"
-
-#: ../../standalone/draksplash_.c:84
-msgid "save theme"
-msgstr "cadw thema"
+#: ../../standalone/draksplash_.c:85
+#, fuzzy
+msgid "Browse"
+msgstr "pori"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
msgstr "Ffurfweddu llun croeso cychwyn"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr "blwch testun cydfesuryn x mewn rhif nodau"
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
-msgstr "blwch testun cydfesuryn mewn rhif nodauy"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
+msgstr ""
+"blwch testun cydfesuryn x\n"
+"mewn rhif nodau"
#: ../../standalone/draksplash_.c:101
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"blwch testun cydfesuryn y\n"
+"mewn rhif nodauy"
+
+#: ../../standalone/draksplash_.c:102
msgid "text width"
msgstr "lled testun"
-#: ../../standalone/draksplash_.c:102
+#: ../../standalone/draksplash_.c:103
msgid "text box height"
msgstr "uchder blwch testun"
-#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr "bar cynnydd cydfesuryn x yn ei gornel uchaf chwith"
-
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
-msgstr "bar cynnydd cydfesuryn y yn ei gornel uchaf chwith"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"bar cynnydd cydfesuryn x\n"
+"yn ei gornel uchaf chwith"
#: ../../standalone/draksplash_.c:105
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"bar cynnydd cydfesuryn y\n"
+"yn ei gornel uchaf chwith"
+
+#: ../../standalone/draksplash_.c:106
msgid "the width of the progress bar"
msgstr "lled y bar cynnydd"
-#: ../../standalone/draksplash_.c:106
+#: ../../standalone/draksplash_.c:107
msgid "the heigth of the progress bar"
msgstr "uchder y bar cynnydd"
-#: ../../standalone/draksplash_.c:107
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr "lliw'r bar cynnydd"
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
-msgstr "mynd nl"
-
-#: ../../standalone/draksplash_.c:120
-msgid "preview"
+#: ../../standalone/draksplash_.c:121
+msgid "Preview"
msgstr "rhagolwg"
-#: ../../standalone/draksplash_.c:121
-msgid "choose color"
-msgstr "dewis lliw"
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "cadw thema"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "dewis lliw"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr "Darddangos logo yn y Consol"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr "Gwneud neges y cnewyllyn yn dawel drwy ragosodiad"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr "Does gan y thema ddim croeso cychwyn yn %s!"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr "cadw thema Croeso cychwyn..."
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "Dewis lliw ProgressBar"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr "Rhaid dewis ffeil delwedd yn gyntaf!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Cynhyrchu rhagolwg..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Methu creu rhagolwg Croeso Cychwyn"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13609,6 +13752,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"defnydd: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "defnydd: keyboarddrake [--expert] [keyboard]\n"
@@ -13637,13 +13788,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Methu cychwyn diweddariad byw!!! \n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"Mae'r newid wedi ei gyflawni, ond i fod yn effeithiol mae'n rhaid i chi "
"allgofnodi"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13915,16 +14066,14 @@ msgstr ""
"Medrwch ddefnyddio \"XSane\" i sganio dogfennau o'r ddewislen rhaglenni Aml-"
"gyfrwng/Graffigau."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Cafodd rhai dyfeisiau yn nosbarth caledwedd\"%s\" eu tynnu:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"Cafodd rhai dyfeisiau yn nosbarth %s eu hychwanegu:\n"
@@ -14001,7 +14150,7 @@ msgstr "Diweddariadau system gosod"
msgid "Exit install"
msgstr "Gadael gosod"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14252,8 +14401,45 @@ msgstr "Aml-gyfrwng - Llosgi CD"
msgid "Scientific Workstation"
msgstr "Gweithfan Gwyddonol"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Methu creu rhagolwg Croeso Cychwyn"
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "I gyflwyno adroddiad gwall, cliciwch ar y botwm adroddiad.\n"
+#~ "Bydd hyn yn agor ffenestr porwr gwe yn https://www.bugzilla.com\n"
+#~ " lle welwch ffurflen i'w llenwi. Bydd yr wybodaeth rhowch arno'n cael ei\n"
+#~ "drosglwyddo i'r gwasanaethwr\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "make bootsplash step 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "mynd i fffurfweddiad lilosplash"
+
+#~ msgid "Go back"
+#~ msgstr "mynd nl"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr "Nid oes gyrrwr OSS/ALSA hysbys ar gyfer eich cerdyn sain (%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Dylai rhif porth fod yn ftp://..."
+
+#~ msgid "quit"
+#~ msgstr "gadael"
#~ msgid ""
#~ "To share your own knowledge and help build Linux tools, join the "
@@ -14263,16 +14449,6 @@ msgstr "Gweithfan Gwyddonol"
#~ "a chynorthwywch eraill drwy ymuno yn y grwpiau trafod niferus sydd i'w "
#~ "cael yn ein tudalennau gwe \"Cymuned\""
-#~ msgid ""
-#~ "Mandrake Linux 9.0 has selected the best software for you. Surf the Web "
-#~ "and view animations with Mozilla and Konqueror, or read your mail and "
-#~ "handle your personal information with Evolution and Kmail"
-#~ msgstr ""
-#~ "Mae Mandrake Linux 9.0 yn cynnig y feddalwedd orau i gael mynediad i "
-#~ "bopeth sydd gan y Rhyngrwyd i'w gynnig. Syrffiwch y we a gwyliwch "
-#~ "animeddiadau gyda Mozilla a Konqueror, cyfnewidiwch e-bost a threfnu eich "
-#~ "gwybodaeth gyda Evolution a Kmail, a llawr iawn rhagor. "
-
#~ msgid "Discover the most up-to-date graphics and multimedia tools!"
#~ msgstr "Darganfyddwch yr offer graffigol ac amlgyfrwng mwyaf diweddar!"
@@ -14284,14 +14460,14 @@ msgstr "Gweithfan Gwyddonol"
#~ "antur, cardiau, chwaraeon, strategaeth..."
#~ msgid ""
-#~ "Mandrake Linux 9.0 provides 11 user interfaces which can be fully "
+#~ "Mandrake Linux 9.0 provides 11 user interfaces that can be fully "
#~ "modified: KDE 3, Gnome 2, WindowMaker..."
#~ msgstr ""
#~ "Mae Mandrake 9.0 yn darpary 11 rhyngwyneb defnyddiwr y mae modd eu "
#~ "haddasu'n llawn: KDE 3, Gnome 2, WindowMaker..."
#~ msgid ""
-#~ "Transform your machine into a powerful server in a few clicks of your "
+#~ "Transform your machine into a powerful server with a few clicks of your "
#~ "mouse: Web server, mail, firewall, router, file and print server..."
#~ msgstr ""
#~ "Trowch eich peiriant i fod yn wasanaethwr pwerus gydag ychydig gliciau ar "
@@ -14329,15 +14505,6 @@ msgstr "Gweithfan Gwyddonol"
#~ "MandrakeSoft."
#~ msgid ""
-#~ "Join the MandrakeSoft support teams and the Linux Community online to "
-#~ "share your knowledge and help others by becoming a recognized Expert on "
-#~ "the online technical support website:"
-#~ msgstr ""
-#~ "Ymunwch thimau cefnogi MandrakeSoft a'r Gymuned Linux arlein i rannu "
-#~ "eich gwybodaeth a cynnig cymorth i eraill drwy ddod yn Arbennigwr "
-#~ "cydnabyddedig ar safle cefnogaeth dechnegol arlein:"
-
-#~ msgid ""
#~ "Sorry, perl-Expect is not installed/enabled. To use\n"
#~ "this feature, install perl-Expect and comment lines 772-774,\n"
#~ " as well as 788,789. Then uncomment line 787."
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index a6bc7852d..fbed35db8 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-09-05 12:07+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: dansk <dansk@klid.dk>\n"
@@ -92,24 +92,24 @@ msgstr "Konfigurr alle skrme uafhngigt"
msgid "Use Xinerama extension"
msgstr "Brug Xinerama-udvidelse"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurr kun kort \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s med 3D hardware acceleration"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -118,18 +118,18 @@ msgstr ""
"Dit kort kan have 3D acceleration, men kun med XFree %s.\n"
"Dit kort er understttet af XFree %s som kan have bedre understttelse i 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Dit kort kan have 3D hardware accelerations-understttelse med XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -141,7 +141,7 @@ msgstr ""
"ned.\n"
"Dit kort er understttet af XFree %s som kan have bedre understttelse i 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,12 +151,12 @@ msgstr ""
"VIGTIGT: Dette er eksperimentelt og kan f din maskine til at lse eller g "
"ned."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installations-skrmdriver)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Tilpasset"
@@ -176,32 +176,32 @@ msgstr "Oplsning"
msgid "Test"
msgstr "Afprv"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Valg"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "O.k."
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Afslut"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -300,25 +300,25 @@ msgstr "Vlg oplsning og farvedybde"
msgid "Graphics card: %s"
msgstr "Grafikkort: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Annullr"
@@ -395,11 +395,11 @@ msgstr "XFree86-server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 driver: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Start X ved systemstart"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -408,7 +408,7 @@ msgstr ""
"Jeg kan stte din maskine op til automatisk at starte X ved\n"
"opstart. nsker du at starte X hver gang du genstarter?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -428,7 +428,7 @@ msgstr ""
"\n"
"Har du denne funktion?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Hvilken standard bruger dit tv?"
@@ -500,7 +500,7 @@ msgstr "Kompakt"
msgid "compact"
msgstr "kompakt"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Videoindstilling"
@@ -508,17 +508,17 @@ msgstr "Videoindstilling"
msgid "Delay before booting default image"
msgstr "Ventetid fr opstart af forvalgt styresystem"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Adgangskode"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Adgangskode (igen)"
@@ -554,14 +554,14 @@ msgstr ""
"Indstillingen ``Begrns kommandolinie-indstillinger'' er intet vrd uden\n"
"en adgangskode"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Prv igen"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
@@ -603,7 +603,7 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -611,148 +611,148 @@ msgstr ""
"Her er flgende typer indgange.\n"
"Du kan tilfje flere eller ndre de eksisterende."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Tilfj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Frdig"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "ndr"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type nsker du at tilfje"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Andet styresystem (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Andet styresystem (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Andet styresystem (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Billede"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Rod"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Vedhft"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Ls-skriv"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Usikker"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Mrkat"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Forvalgt"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-strrelse"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Ingen video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Fjern indgang"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Tom mrkat er ikke tilladt"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Du skal angive en kerne-fil"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Du skal angive en root-partition"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Denne mrkat er allerede brugt"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fandt %s %s grnsesnit"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Har du n til?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Har du nogen %s grnsesnit?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nej"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Se info for maskinel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installerer driver for %s kort %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -761,7 +761,7 @@ msgstr ""
"Du kan nu angive parametre til modul %s.\n"
"Bemrk at alle adresser br indtastes med foranstillet 0x, fx '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -772,17 +772,17 @@ msgstr ""
"Parametrene er i formatet ``navn=vrdi navn2=vrdi2 ...''.\n"
"F.eks., ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modulindstillinger:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvilken %s driver skal jeg prve?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -802,15 +802,15 @@ msgstr ""
"burde\n"
"ikke forrsage nogen skader."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Automatisk sondering"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Specificr parametre"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -819,61 +819,61 @@ msgstr ""
"Indlsning af modul %s mislykkedes.\n"
"nsker du at prve igen med andre parametre?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "adgang til rpm-vrktjer"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "adgang til netvrksvrktjer"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "adgang til oversttelsesvrktjer"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilfjet %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Adgangskoden er for simpel"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brugernavnet m kun indeholde sm bogstaver, tal, `-' og `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Dette brugernavn eksisterer allerede"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Tilfj bruger"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -882,32 +882,32 @@ msgstr ""
"Indtast en bruger\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Acceptr bruger"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Rigtige navn"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Brugernavn"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Skal"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -915,19 +915,19 @@ msgstr ""
"Jeg kan stte din maskine op til automatisk at logge en bestemt bruger p.\n"
"nsker du at bruge denne finesse?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Vlg den forvalgte bruger:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Vlg den vindueshndtering du nsker at benytte:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Vlg det sprog, der skal bruges."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -935,35 +935,35 @@ msgid ""
msgstr ""
"Du kan vlge andre sprog der vil vre tilgngelige efter installationen"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alt"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Ingen fildeling"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s skal vre installeret. nsker du at installere den?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Du kan eksportere med NFS eller Samba. Hvilken vil du bruge"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Krvet pakke %s mangler"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -976,11 +976,11 @@ msgstr ""
"Tilladelse af dette vil stte brugere i stand til simpelthen at klikke p "
"'Fildeling' i konqueror og nautilus.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -988,31 +988,31 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilfje en bruger til denne gruppe."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackere"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Ringe"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Hj"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Hjere"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1023,7 +1023,7 @@ msgstr ""
"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
"adgangskoder."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1031,7 +1031,7 @@ msgstr ""
"Kontrol af adgangskode er nu aktiveret, men brug som netvrksmaskine er "
"stadig ikke anbefalet."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1039,7 +1039,7 @@ msgstr ""
"Dette er standard sikkerheds-anbefalingen for en maskine\n"
" med forbindelse til Internettet som klient. "
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1047,7 +1047,7 @@ msgstr ""
"Der er allerede nogle begrnsninger, og flere automatiske kontroller bliver "
"krt hver nat."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1061,7 +1061,7 @@ msgstr ""
"forbindelser fra mange klienter. Bemrk: hvis din maskine kun er en klient "
"p internettet br du hellere vlge et lavere niveau."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1069,33 +1069,33 @@ msgstr ""
"Baseret p det foregende niveau, men systemet er nu helt lukket.\n"
"Sikkerhedsfaciliteterne er nu p deres hjeste niveau."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "Basale valgmuligheder for DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Vlg det nskede sikkerhedniveau"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Sikkerhedsniveau"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Brug libsafe for servere"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Et bibliotek som beskytter mod angreb via bufferoverlb og formatstrenge."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Sikkerhedsadministrator (brugernavne eller e-post)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1110,7 +1110,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1135,58 +1135,58 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Velkommen til GRUB styresystemsvlgeren!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Brug tasterne %c og %c til at vlge mellem mulighederne."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "kommandoerne fr opstart, eller 'c' for en kommandolinie."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Den fremhvede mulighed vil blive startet automatisk om %d sekunder."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Skrivebord"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start-menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlseren p en %s-partition\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "endnu er ingen hjlp implementeret.\n"
@@ -1238,63 +1238,63 @@ msgstr "Lilo/grub modus"
msgid "Yaboot mode"
msgstr "Yaboot modus"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Installr temaer"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Visningstema under konsol"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Opret nyt tema"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Sikkerhedskopir %s til %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Fejl"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "kunne ikke lave sikkerhedskopi af lilo-besked"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Kopir %s til %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "kan ikke ndre lilo-besked"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Lilo-besked ikke fundet"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Kan ikke skrive /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Skriv %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1302,17 +1302,17 @@ msgstr ""
"Kan ikke skrive /etc/sysconfig/bootsplash\n"
"Fil ikke fundet."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Kan ikke opstarte mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Lav initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1321,24 +1321,24 @@ msgstr ""
"Start \"lilo\" som root p kommandolinjen for at frdiggre installationen "
"af Lilo-tema."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Genstart 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Bemrk"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Problemfri installation af temaer for LiLo- og opstartsskrm"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Installation af tema mislykkedes"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1347,21 +1347,21 @@ msgstr ""
"Du bruger for jeblikket % som opstartshndterer.\n"
"Klik p Konfigurr for at starte opstnings-vejlederen."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurr"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Valg af opstartsskrm"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Temaer"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1375,44 +1375,44 @@ msgstr ""
"du kan vlge\n"
"dem separat"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Lilo-skrm"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Opstartsskrm"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Systemtilstand"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Start X-vinduessystemet efter opstart"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nej, jeg nsker ikke automatisk login"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, jeg nsker automatisk login med denne (bruger, skrivebord)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "O.k."
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan ikke lse /etc/inittab: %s"
@@ -1509,50 +1509,58 @@ msgstr "strig"
msgid "United States"
msgstr "U.S.A."
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Ny"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Afmontr"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montr"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Monteringssti"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Indtast LRL for WebDAV-serveren"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "URL'en skal begynde med http:// or https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Monteringssti: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
@@ -1639,7 +1647,7 @@ msgstr "Tom"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Andet"
@@ -1782,7 +1790,7 @@ msgstr ""
"Kopien af partitionstabellen har ikke samme strrelse\n"
"Fortst alligevel?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Advarsel"
@@ -2342,7 +2350,7 @@ msgstr ""
"Indtast venligst dit brugernavn, din adgangskode og dit domnenavn for at f "
"adgang til denne vrt."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Brugernavn"
@@ -2354,23 +2362,23 @@ msgstr "Domne"
msgid "Search servers"
msgstr "Sg efter servere"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering af %s mislykkedes"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ved ikke hvordan man formaterer %s som type %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montering af partition %s i katalog %s mislykkedes"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fejl ved afmontering af %s: %s"
@@ -2456,47 +2464,110 @@ msgstr "Ingenting at lave"
msgid "Error opening %s for writing: %s"
msgstr "Fejl ved bning af %s for skrivning: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "Intet alternativ drivprogram"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
"Der findes intet kendt alternativ OSS/ALSA-drivprogram for lydkortet (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Lyd-konfiguration"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Her kan du vlge et alternativ drivprogram (enten OSS eller ALSA) for "
"lydkortet (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Drivprogram:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Hjlp"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Vent venligst... Stter konfigurationen i anvendelse"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Vent venligst"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Ingen kendt driverrutine"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Der findes intet kendt drivprogram for lydkortet (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Ukendt drivprogram"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2624,7 +2695,8 @@ msgid "/_Quit"
msgstr "/_Afslut"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hjlp"
@@ -2645,14 +2717,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Rapportr fejl"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Om..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Om Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2660,56 +2736,53 @@ msgstr ""
"Dette er HardDrake, et Mandrake-vrktj for konfigurering af maskinel.\n"
"Version:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Forfatter:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 version "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Fundet maskinel"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informationer"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Konfigurr modul"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Kr konfigurationsvrktj"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Sgning udfres"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Vent venligst"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Du kan konfigurere hver parameter for modulet her."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Krer \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr "Undersger $Ident-klasse\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "Undersger %s-klasse\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "primr"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "sekundr"
@@ -4549,7 +4622,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Du skal ogs formatere %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4573,7 +4646,7 @@ msgstr ""
"\n"
"nsker du virkelig at installere disse servere?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4586,20 +4659,20 @@ msgstr ""
"\n"
"nsker du virkelig at fjerne disse pakker?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan ikke bruge rundkastning uden noget NIS-domne"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Indst en tom diskette i diskette-drev %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Denne diskette er ikke formatteret til FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4607,12 +4680,12 @@ msgstr ""
"For at bruge dette gemte pakkevalg, start installationen op med``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fejl ved lsning af filen %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4854,7 +4927,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Velkommen til %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Intet tilgngeligt diskettedrev"
@@ -4884,11 +4957,11 @@ msgstr "Installationsmetode"
msgid "Please choose one of the following classes of installation:"
msgstr "Vlg en af de flgende installations-mder:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Valg af pakkegrupper"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individuelt pakkevalg"
@@ -4966,7 +5039,7 @@ msgstr "Vis automatisk valgte pakker"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installr"
@@ -4986,7 +5059,7 @@ msgstr "Minimal installation"
msgid "Choose the packages you want to install"
msgstr "Vlg pakker som skal installeres"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Installerer"
@@ -5013,17 +5086,17 @@ msgid "Installing package %s"
msgstr "Installerer pakke %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Acceptr"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Ngt"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5039,16 +5112,16 @@ msgstr ""
"Hvis du ikke har den s tryk p Annullr, s undgs installation fra denne cd"
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Fortst alligevel?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Der opstod en fejl ved installeringen af pakkerne:"
@@ -5170,7 +5243,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5335,7 +5408,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Er du sikker p at du afviser licensen?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatur"
@@ -5542,11 +5615,11 @@ msgstr "Indst en diskette med pakkevalget"
msgid "Selected size is larger than available space"
msgstr "Valgt strrelse er strre end tilgngelig plads"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Installationstype"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5554,19 +5627,19 @@ msgstr ""
"Du har ikke valgt nogen gruppe af pakker.\n"
"Vlg den minimale installation du nsker"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Med X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Med basal dokumentation (anbefalet!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Virkelig minimal installation (specielt ingen urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5576,16 +5649,16 @@ msgstr ""
"Hvis du ikke har nogen af disse cd'er, klik Annullr.\n"
"Hvis kun nogen cd'er mangler, fravlg dem, og klik s Ok."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cdrom med etikette '%s'"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Forbereder installationen"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5594,21 +5667,21 @@ msgstr ""
"Installerer pakke %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Konfiguration efter installation"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Indst opstartsdisketten i diskette-drevet %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Indst Opdater moduler-disketten i drev %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5676,7 +5749,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5695,155 +5768,155 @@ msgstr ""
"\n"
"nsker du at installere opdateringerne?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontakter Mandrake Linux netsted for at hente listen over tilgngelige spejle"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Vlg det spejl hvorfra pakkerne skal hentes"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontakter spejlet for at hente listen af tilgngelige pakker"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Maskin-ur sat til GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjlp af NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP-server"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Ekstern CUPS server"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Ingen printer"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA-lydkort?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Kr \"sndconfig\" efter installation for at konfigurere dit lydkort"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Intet lydkort genkendt. Prv at kre \"harddrake\" efter installation"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Oversigt"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Mus"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Tidszone"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Internt ISDN-kort"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Lydkort"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-kort"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Windows Domain"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokale filer"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "St root-adgangskode"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Ingen adgangskode"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dette kodeord er for nemt at gtte (det skal mindst vre p %d tegn)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Identifikation"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autentificering LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP grundlggende dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP-server"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autentificering NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS-domne"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5872,19 +5945,19 @@ msgstr ""
"Kommandoen 'wbinfo -t' vil afprve om dine hemmelige autentifikationsdata er "
"i orden."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Autentifikations Windowsdomne"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Brugernavn for domneadministrator"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Adgangskode for domneadministrator"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5912,19 +5985,19 @@ msgstr ""
"Hvis du nsker at lave en opstartsdiskette til dit system, indst en "
"diskette i dit frste diskettedrev og tryk 'Ok'."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Frste diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Andet diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Spring over"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5949,7 +6022,7 @@ msgstr ""
"Vil du lave en opstartsdiskette til dit system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5963,28 +6036,28 @@ msgstr ""
"oprettelse af en opstartsdiskette p en 1.44 Mb diskette vil formentlig\n"
"mislykkes, fordi XFS krver en meget stor driver)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Der er desvrre ikke noget tilgngeligt diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vlg det diskette-drev, du vil benytte til at lave boot-disketten"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Indst en diskette i %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Opretter opstartsdiskette..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Forbereder opstarter..."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5995,11 +6068,11 @@ msgstr ""
"opstartsindlseren vil ikke virke for dig. Installationen vil fortstte, men "
"du skal bruge BootX for at starte din maskine."
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "nsker du at bruge aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6008,15 +6081,15 @@ msgstr ""
"forsg at gennemtvinge installation selv om dette kan delgge den frste "
"partition?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Installerer systemopstarter"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installation af opstarter mislykkedes. Den flgende fejl opstod:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6033,17 +6106,17 @@ msgstr ""
" Skriv s: shut-down\n"
"Ved nste opstart burde du se systemstarteren."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Indst en tom diskette i drev %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6053,7 +6126,7 @@ msgstr ""
"\n"
"Er du sikker p du nsker du at lukke nu?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6085,15 +6158,15 @@ msgstr ""
"Information om konfigurering af dit system kan du finde i kapitlet om efter-"
"installation i den Officielle Mandrake Linux Brugervejledning."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6107,15 +6180,15 @@ msgstr ""
"\n"
"Du foretrkker mske at afspille installationen igen\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatisk"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Afspil igen"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Gem pakke-valg"
@@ -6151,14 +6224,14 @@ msgstr "Avanceret"
msgid "Basic"
msgstr "Basal"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Forrige"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Nste"
@@ -6604,7 +6677,7 @@ msgstr "Hjre Windows-tast"
msgid "Circular mounts %s\n"
msgstr "Cirkulre monteringer %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Fjern de logiske delarkiver frst\n"
@@ -6741,15 +6814,15 @@ msgstr "ingenting"
msgid "No mouse"
msgstr "Ingen mus"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Test musen"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "For at aktivere musen,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "FLYT P HJULET!"
@@ -6785,11 +6858,11 @@ msgstr "Sammenfold tr"
msgid "Toggle between flat and group sorted"
msgstr "Skift mellem flad og gruppesorteret"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Lav forbindelse til Internettet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6799,23 +6872,19 @@ msgstr ""
"Nogen forbindelser bruger pptp, og nogle f bruger DHCP.\n"
"Hvis du ikke ved noget, vlg 'brug pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "brug dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "brug pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "brug pptp"
@@ -6917,7 +6986,7 @@ msgstr ""
msgid "no network card found"
msgstr "kunne ikke finde noget netkort"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Konfigurerer netvrk"
@@ -6933,15 +7002,15 @@ msgstr ""
"Dit vrtsnavn br vre et fuldt kvalificeret vrtsnavn,\n"
"fx 'minpc.mitfirma.dk'."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Vrtsnavn"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Konfigurr netvrk"
@@ -6990,8 +7059,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Gammel konfiguration (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN konfiguration"
@@ -7027,23 +7096,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Hvilken protokol nsker du at bruge?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Hvad slags kort har du?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Det ved jeg ikke"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7056,19 +7130,19 @@ msgstr ""
"\n"
"Hvis du har et PCMCIA kort skal du vide irq og io for kortet.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Afbryd"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Fortst"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Hvilket er dit ISDN-kort?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7076,7 +7150,7 @@ msgstr ""
"Jeg har opdaget et ISDN PCI-kort, men jeg ved ikke hvilken type. Vlg et PCI-"
"kort i nste skrmbillede."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Ingen ISDN PCI-kort fundet. Vlg t i nste skrmbillede."
@@ -7128,7 +7202,7 @@ msgstr "Frste DNS-server (valgfri)"
msgid "Second DNS Server (optional)"
msgstr "Anden DNS-server (valgfri)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7137,7 +7211,7 @@ msgstr ""
"Du kan lukke forbindelsen til Internettet eller genkonfigurere din "
"forbindelse."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7145,11 +7219,11 @@ msgstr ""
"\n"
"Du kan genkonfigurere din forbindelse"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Du har forbindelse til Internettet nu."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7157,32 +7231,32 @@ msgstr ""
"\n"
"Du kan lave forbindelse til Internettet eller omkonfigurere din forbindelse."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Du er ikke forbundet til Internettet nu."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Tilslut"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Afbryd"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Konfigurr forbindelsen"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetforbindelse & -konfiguration"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Vi skal nu konfigurere opkoblingen '%s'."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7201,12 +7275,12 @@ msgstr ""
"\n"
"Tryk OK for at begynde."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurr netvrk"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7218,7 +7292,7 @@ msgstr ""
"Klik OK for at beholde din konfiguration, eller annullr for at "
"omkonfigurere din Internet- og netvrksforbindelse.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7230,72 +7304,72 @@ msgstr ""
"Vi skal til at konfigurere din internet- eller netvrksforbindelse.\n"
"Hvis du ikke nsker at bruge autodetektering, s fravlg afkrydsningsboksen\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Vlg profilen der skal konfigureres"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Brug automatisk detektion"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Eksperttilstand"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detekterer enheder..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normal modemforbindelse"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "Detekteret p port %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN-forbindelse"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "Detekteret %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL opkobling"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "Detekteret p grnseflade %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabelforbindelse"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kabelopkobling detekteret"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Lokalnet-konfiguration"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet-kort detekteret"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Vlg den opkobling, du nsker at konfigurere"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7305,23 +7379,23 @@ msgstr ""
"Venligst vlg den du nsker at bruger.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internet opkobling"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "nsker du at starte din forbindelse ved opstart?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Netvrks konfiguration"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Netvrket skal startes op igen"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7332,7 +7406,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7342,7 +7416,7 @@ msgstr ""
"Konfigurationen vil nu blive anvendt p dit system.\n"
"\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7350,7 +7424,7 @@ msgstr ""
"Derefter anbefaler vi at du genstarter dit X-milj for\n"
"at undg problemer med det ndrede vrtsnavn"
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7360,7 +7434,7 @@ msgstr ""
"Afprv din forbindelse med net_monitor eller mcc. Hvis din forbindelse ikke "
"virker, kan du prve at genstarte konfigurationen."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7372,7 +7446,7 @@ msgstr ""
"Ved kun at trykke p OK beholder du den nuvrende konfiguration.\n"
"ndringer i felterne nedenunder vil overskrive denne konfiguration."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7381,42 +7455,42 @@ msgstr ""
"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurerer netvrksenheden %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (drivprogram %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-adresse"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmaske"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatisk IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Start ved opstart"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresse skal have formatet 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7428,42 +7502,52 @@ msgstr ""
"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
"s lad navne-server-felterne vre blanke."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS-server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (fx %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway enhed"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP adresse skal have formatet 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP adresse skal have formatet 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Konfiguration af mellemvrt (proxy)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Flg id for netvrkskort (nyttigt for brbare)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy skal vre http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy skal vre ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url burde begynde med 'ftp:' eller 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9054,7 +9138,7 @@ msgstr "Udskriver p printeren '%s'"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9615,10 +9699,6 @@ msgstr ""
"Udfyld venligst oplysningerne om ftp-proxy\n"
"Lad det vre blankt hvis du ikke nsker en ftp-proxy"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url burde begynde med 'ftp:' eller 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9666,6 +9746,41 @@ msgstr "mkraid fejlede (mske mangler raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Sikkerhedsniveau:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sikkerhedsniveau"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Sikkerhedsadministrator:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Forvalgt)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Vlg det nskede sikkerhedniveau"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Vent venligst, forbereder installationen"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystemet"
@@ -9968,7 +10083,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fildeling"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "System"
@@ -10061,7 +10176,7 @@ msgstr "F det meste fra Internettet"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10116,7 +10231,7 @@ msgstr "Brugergrnseflader"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
"Mandrake Linux 9.0 tilbyder dig 11 brugergrnseflader hvor alt kan "
@@ -10144,7 +10259,7 @@ msgstr "Lav din maskine om til en plidelig server"
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Lav din maskine om til en strk server med bare nogen f klik med musen: "
@@ -10164,7 +10279,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
"Dette brandmursprodukt indholder netvrksfunktioner som lader dig opfylde "
@@ -10181,7 +10296,7 @@ msgstr "Den officielle MandrakeSoft-butik"
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Vores komplette udvalg af Linux-lsninger, s vel som specialtilbud p "
"produkter og andre godbidder, er tilgngelige via nettet i vores e-butik:"
@@ -10240,8 +10355,8 @@ msgstr "Find lsningerne p dine problemer via MandrakeSofts online-support."
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
"Slut dig til MandrakeSofts supporthold og Linux-samfundet p nettet for at "
"dele din viden og hjlpe andre ved at blive en anerkendt Ekspert p det "
@@ -10286,11 +10401,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installerer pakker..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Log ud og tryk herefter p Ctrl-Alt-Bak"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Log ind i %s igen for at aktivere ndringerne"
@@ -10331,16 +10446,6 @@ msgstr "Tilfj/slet brugere"
msgid "Add/Del Clients"
msgstr "Tilfj/slet klienter"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Hjlp"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Start fra sdiskette"
@@ -10389,48 +10494,64 @@ msgstr "Tilfj bruger -->"
msgid "<-- Del User"
msgstr "<-- Slet bruger"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Opstartsbilleder for netopstart"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Tilfj klient -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Slet klient"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Konfigurr dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Avanceret konfiguration"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Udskriv konfiguration"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Indst diskette:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Kunne ikke f adgang til disketten!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Diskette kan fjernes nu"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Intet tilgngeligt diskettedrev!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO-aftryk er %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Noget gik galt! - er mkisofs installeret?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Skal oprette /etc/dhcpd.conf frst!"
@@ -10576,12 +10697,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10594,41 +10715,41 @@ msgstr ""
"Advarsel: Hvis du allerede har lavet denne proces behver du formodentlig\n"
" at fjerne posten fra authorized_keys p serveren."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Det kan tage lidt tid at generere nglerne."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "Fejl: Kan ikke starte %s."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr "Ingen foresprgsel om adgangskode p %s ved port %s"
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, c-format
msgid "Bad password on %s"
msgstr "Drlig adgangskode p %s"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr "Adgang ngtet ved overfrsel af %s til %s"
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr "Kan ikke finde %s p %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr "%s svarer ikke"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10645,64 +10766,64 @@ msgstr ""
"\n"
"uden at blive spurgt om en adgangskode."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "WebDAV eksternt netsted allerede synkroniseret!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "WebDAV overfrsel mislykkedes!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Ingen CDR/DVDR i drevet!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr "Ser ikke ud til at vre et skrivbart medie!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr "Ikke sletbart medie!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Det kan tage lidt tid at slette mediet."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr "Problem med rettigheder ved adgang til CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr "Intet bnd i %s."
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Sikkerhedskopir systemfiler..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Sikkerhedskopifiler for disk..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Sikkerhedskopir brugerfiler..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Fremdrift for sikkerhedskopiering af disk..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Sikkerhedskopir andre filer..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr "Ingen ndringer til sikkerhedskopi!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10713,7 +10834,7 @@ msgstr ""
"Drakbackup aktiviteter via %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10722,7 +10843,7 @@ msgstr ""
"filliste sendt via FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10732,7 +10853,7 @@ msgstr ""
"FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler via "
"FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10742,7 +10863,7 @@ msgstr ""
"Drakbackup aktiviteter via CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10752,24 +10873,24 @@ msgstr ""
"Drakbackup aktiviteter via bnd:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Fejl ved afsendelse af post. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr "Kan ikke oprette katalog!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Valg af filer"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Vlg filerne eller katalogerne og klik p 'Tilfj'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10777,26 +10898,26 @@ msgstr ""
"\n"
"Markr alle muligheder som du behver.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Disse valgmuligheder kan sikkerhedskopiere og genskabe alle filer i dit /etc "
"katalog.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Lav sikkerhedkopi af dine systemfiler. (/etc kataloget)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Medtag ikke kritiske filer (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10804,43 +10925,43 @@ msgstr ""
"Med denne valgmulighed vil du vre i stand til at kunne genskabe\n"
"enhver version af dit /etc katalog."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Markr alle brugere som du vil have med i din sikkerhedskopi."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Medtag ikke cache for netlser"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Fjern valgte"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Brugere"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "Brug netvrksforbindelse til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr "Netmetode:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr "Brug Expect for SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -10848,7 +10969,7 @@ msgstr ""
"Opret/overfr\n"
"sikkerhedskopieringsngler for SSH"
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -10856,15 +10977,18 @@ msgstr ""
" Overfr \n"
"Nu"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr "Nglerne findes allerede"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Indtast vrtsnavn eller IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -10872,27 +10996,27 @@ msgstr ""
"Indtast kataloget (eller modulet) hvori\n"
" sikkerhedskopien skal lgges p denne maskine."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Indtast dit brugernavn"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Indtast din adgangskode"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Husk denne adgangskode"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr "Behver vrtsnavn, brugernavn og adgangskode!"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Brug CD/DVDROM til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -10902,35 +11026,35 @@ msgstr ""
"(Tryk Enter for at overfre indstillinger til andre felter.\n"
"Dette felt behves ikke, det er kun et vrktj for at udfylde formularen.)"
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Vlg cd/dvd-mediastrrelse"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr "Markr om du bruger en multisessions-cd"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Markr om du bruger et CDRW-medie"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Markr om du vil slette dit CDRW-medie (1. session"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr " Slet nu "
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Markr om du bruger en CDRW-enhed"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Markr om du bruger en DVDRAM-enhed"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10938,32 +11062,32 @@ msgstr ""
"Indtast din CD-brnders enhedsnavn\n"
" fx: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Ingen cd-enhed defineret!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "brug bnd til sikkerhedskopieringen"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Indtast endhedsnavnet der skal bruges til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr "Markr om du vil bruge den ikke-tilbagespolende enhed."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr "Markr om du vil slette dit bnd fr sikkerhedskopi laves"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
msgstr "Markr om du vil udskyde dit bnd fr sikkerhedskopi laves"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10971,55 +11095,55 @@ msgstr ""
"Indtast den maksimale strrelse\n"
" tilladt for Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Indtast kataloget hvortil der skal gemmes:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Brug kvoter for sikkerhedskopieringsfiler"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Netvrk"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Diskdrev / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Bnd"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "timeligt"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "dagligt"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "ugentligt"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "mnedligt"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Brug dmon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11027,7 +11151,7 @@ msgstr ""
"Vlg tidsinterval mellem\n"
"hver sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11035,7 +11159,7 @@ msgstr ""
"Vlg mediet for\n"
"sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -11044,71 +11168,71 @@ msgstr ""
"Forsikr dig gerne om at cron-dmonen er med i dine tjenester.\n"
"Bemrk at alle 'net'-medier ogs bruger disken for nrvrende."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr "Slet tar-filer p disken efter sikkerhedskopiering til andet medie."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Hvad"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Hvor"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Hvornr"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Flere muligheder"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Drakbackup konfiguration"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Vlg hvor du nsker at sikkerhedskopiere"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "p diskdrev"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "over netvrk"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "p cd-rom"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr "p bndenhed"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Vlg hvad du vil sikkerhedkopiere"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Lav sikkerhedskopi af system"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Lav sikkerhedskopi af brugere"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Hndpluk bruger"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11116,7 +11240,7 @@ msgstr ""
"\n"
"Kilder for sikkerhedskopi: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11124,7 +11248,7 @@ msgstr ""
"\n"
"- Systemfiler:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11132,7 +11256,7 @@ msgstr ""
"\n"
"- Brugerfiler:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11140,7 +11264,7 @@ msgstr ""
"\n"
"- Andre filer:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11149,7 +11273,7 @@ msgstr ""
"\n"
"- Gem til diskdrev p stien: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
@@ -11157,7 +11281,7 @@ msgstr ""
"\n"
"- Slet tar-filer p disken efter sikkerhedskopiering.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -11165,20 +11289,20 @@ msgstr ""
"\n"
"- Brnd p CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr " p enhed: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr " (multi-session)"
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
@@ -11187,12 +11311,12 @@ msgstr ""
"\n"
"- Gem p bnd p enhed: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tErase=%s"
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
@@ -11201,7 +11325,7 @@ msgstr ""
"\n"
"- Gem via %s p vrt: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11210,7 +11334,7 @@ msgstr ""
"\t\t brugernavn: %s\n"
"\t\t p sti: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11218,19 +11342,19 @@ msgstr ""
"\n"
"- Muligheder:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tMedtag ikke systemfiler\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSikkerhedskopiering bruger tar og bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tSikkerhedskopiering bruger tar og gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11239,39 +11363,39 @@ msgstr ""
"\n"
"- Dmon (%s) indeholder:\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Diskdrev.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-cdrom.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Netvrk via FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Netvrk via SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Netvrk via rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Netvrk via webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ingen konfiguration, klik p Vejleder eller Avanceret.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11279,7 +11403,7 @@ msgstr ""
"Liste over data som skal genskabes:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11287,100 +11411,100 @@ msgstr ""
"Liste over data der er delagt:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Afmarkr eller fjern det gerne nste gang."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Sikkerhedskopifiler er delagte"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Alle dine valgte data er blevet "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " genskabt uden fejl p %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Genskab konfiguration "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "O.k. at genskabe de andre filer."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Brugerliste at genskabe (kun den nyeste dato per bruger er vigtig)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Lav sikkerhedskopi af systemfiler fr:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Vlg dato for genskabning"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Brug disk til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Indtast kataloget der skal gemmes:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP forbindelse"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Sikker forbindelse"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Genskab fra disk."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Vlg et andet medie at genskabe fra"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Andet medie"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Genskab system"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Genskab brugere"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Genskab andet"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "vlg sti at genskabe (i stedet for /)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Lav ny sikkerhedskopi fr genskabning (kun for inkrementalbackupper)."
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Fjern brugerkataloger fr genskabning."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
@@ -11388,7 +11512,7 @@ msgstr ""
"Genskab valgt\n"
"katalogpost"
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
@@ -11396,7 +11520,7 @@ msgstr ""
"Genskab valgte\n"
"filer"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
@@ -11404,12 +11528,12 @@ msgstr ""
"ndr\n"
"Genskabelsessti"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr "Sikkerhedskopier fandtes ikke p %s."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -11418,16 +11542,16 @@ msgstr ""
"Indst cd'en med volumetiket %s\n"
" i cd-enheden monteret p /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
msgstr "Genskab fra cd"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "Ikke korrekt cd-etiket. Cd'en har etiket %s."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -11436,102 +11560,102 @@ msgstr ""
"Indst bndet med volumeetiket %s\n"
" i bndenheden %s"
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
msgstr "Genskab fra bnd"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "Ikke korrekt bndetiket. Bndet har etiket %s."
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
msgstr "Genskab via netvrk"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Genskab via netvrksprotokol: %s"
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "Vrtsnavn"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr "Stil til vrt eller modul"
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
msgstr "Adgangskode krvet"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
msgstr "Brugernavn krvet"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
msgstr "Vrtsnavn krvet"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr "Sti eller modul krvet"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr "Filer genskabte..."
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
msgstr "Genskabelse mislykkedes..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Genskab alle sikkerhedskopier"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Tilpasset genskabelse"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr "Cd'en er p plads - fortst."
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr "Bladr til nyt genskabelseslager."
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
msgstr "Genskab fra katalog"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
msgstr "Fremskridt for genskabelse"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Forrige"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gem"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Opbyg sikkerhedskopien"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Genskab"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -11541,13 +11665,13 @@ msgstr ""
" Din rapport blev ikke sendt.\n"
" Konfigurr venligst sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "De flgende pakker vil blive installeret @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11555,19 +11679,19 @@ msgstr ""
"Fejl ved sending af fil via FTP.\n"
" Ret venligst din FTP-konfiguration."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Udvlg de data du vil genskabe..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Vlg medie for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Vlg data for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11575,59 +11699,59 @@ msgstr ""
"ingen konfigurationsfil fundet \n"
"klik p Vejleder eller Avanceret."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Under udvikling ... vent venligst:-)"
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Lav sikkerhedskopi af systemfiler"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Lav sikkerhedskopi af brugerfiler"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Lav sikkerhedskopi af andre filer"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "Filer sendes via FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Sender filer..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Se konfiguration af sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Konfiguration med vejleder"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Avanceret konfiguration"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Lav sikkerhedskopiering nu"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11687,7 +11811,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11701,7 +11825,7 @@ msgstr ""
" stte myhostname eller mydomain i /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11777,7 +11901,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11826,20 +11950,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft ved DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" opdateringer 2002 MandrakeSoft ved Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11871,7 +11995,7 @@ msgstr ""
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
"USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11945,7 +12069,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11963,7 +12087,7 @@ msgstr ""
"fr den sendes til ftp-serveren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11985,7 +12109,7 @@ msgstr ""
"Det er vigtigt at vre forsigtig og ikke ndre sikkerhedskopieringens\n"
"datafiler i hnden.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12108,8 +12232,8 @@ msgid "Synchronization tool"
msgstr "Synkroniseringsvrktj"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Fritstende vrktjer"
@@ -12174,7 +12298,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12183,24 +12307,24 @@ msgstr ""
"\n"
"\n"
"For at indsende en fejlrapport klik da p rapport-knappen.\n"
-"Dette vil bne et vindue i en netlser p https://www.bugzilla.com\n"
+"Dette vil bne et vindue i en netlser p https://drakbug.mandrakesoft.com\n"
" hvor du vil finde en formular der kan udfyldes. Informationen vist ovenfor "
"vil blive overfrt til den server\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Rapport"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Ikke installeret"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "Opkobler til vejleder for Bugzilla"
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Ingen netlser til stede! Installr venligst n"
@@ -12301,10 +12425,6 @@ msgstr "Vejleder..."
msgid "Apply"
msgstr "Anvend"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Vent venligst... Stter konfigurationen i anvendelse"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Tilsluttet"
@@ -12426,7 +12546,7 @@ msgstr "Modulnavn"
msgid "Size"
msgstr "Strrelse"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12491,12 +12611,12 @@ msgstr "Uddata"
msgid "Build the disk"
msgstr "Opbyg disken"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Forsikr dig at der er et medie tilstede i enheden %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12505,12 +12625,12 @@ msgstr ""
"Der er ikke noget media, eller det er skrivebeskyttet, i enhed %s.\n"
"Indst venligst noget."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Kan ikke fork(): %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12993,47 +13113,47 @@ msgstr ""
"Klik p Konfigurr for at starte programmet til at dele din "
"internetforbindelse!"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "group"
msgstr "gruppe"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr "sti"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
msgstr "rettigheder"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "user"
msgstr "bruger"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr "Op"
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
msgid "delete"
msgstr "slet"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr "redigr"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
msgid "Down"
msgstr "Ned"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
msgstr "Tilfj en regel"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr "vlg perm-fil at se eller redigere"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
@@ -13043,59 +13163,59 @@ msgstr ""
"grupper via msec.\n"
"Du kan ogs redigere dine egne regler som vil tilsidestte standard-reglerne."
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
msgstr "Tilfj en ny regel i slutningen"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr "Redigr aktuelle regel"
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr "Flyt valgte regel et niveau op"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr "Flyt valgte regel et niveau ned"
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
msgstr "Slet valgte regel"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr "bladr"
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
msgstr "Aktuelle bruger"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
msgstr "Rettigheder"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr "Sti"
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
msgid "Property"
msgstr "Egenskab"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr "sticky-bit"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr "Set-UID"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr "Set-GID"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
@@ -13103,35 +13223,35 @@ msgstr ""
"Brugt til katalog:\n"
" kun ejeren af kataloget eller filen i dette katalog kan slette den"
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr "Brug ejers id ved udfrelsen"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr "Brug gruppe-id ved udfrelsen"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr "ved kontrol vil ejer og gruppe ikke blive ndret"
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
msgstr "Valg af sti"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
msgid "user :"
msgstr "bruger:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
msgid "group :"
msgstr "gruppe:"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
msgstr "Intet lydkort genkendt!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13151,123 +13271,142 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr "pakken ImageMagick krves for at det skal fungere korrekt"
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
msgstr "opretter frste trin"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
msgstr "endelig oplsning"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
msgstr "vlg billedfil"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
msgid "Theme name"
msgstr "Tema-navn"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr "lav startskrm trin 2"
-
-#: ../../standalone/draksplash_.c:82
-msgid "go to lilosplash configuration"
-msgstr "g til konfiguration af Lilo-startskrm"
-
-#: ../../standalone/draksplash_.c:83
-msgid "quit"
-msgstr "afslut"
-
-#: ../../standalone/draksplash_.c:84
-msgid "save theme"
-msgstr "gem temaer"
+#: ../../standalone/draksplash_.c:85
+#, fuzzy
+msgid "Browse"
+msgstr "bladr"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
msgstr "Konfigurr startskrmsbilled"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
+#: ../../standalone/draksplash_.c:100
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr "antal tegn i tekstrudens x-led"
-#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+#: ../../standalone/draksplash_.c:101
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr "antal tegn i tekstrudens y-led"
-#: ../../standalone/draksplash_.c:101
+#: ../../standalone/draksplash_.c:102
msgid "text width"
msgstr "tekstbredde"
-#: ../../standalone/draksplash_.c:102
+#: ../../standalone/draksplash_.c:103
msgid "text box height"
msgstr "hjde p tekstrude"
-#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr "x-koordinatet for forlbsindikatorens vre venstre hjrne"
-
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
-msgstr "y-koordinatet for forlbsindikatorens vre venstre hjrne"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"x-koordinatet for forlbsindikatorens\n"
+"vre venstre hjrne"
#: ../../standalone/draksplash_.c:105
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"y-koordinatet for forlbsindikatorens\n"
+"vre venstre hjrne"
+
+#: ../../standalone/draksplash_.c:106
msgid "the width of the progress bar"
msgstr "bredden p forlbslinjen"
-#: ../../standalone/draksplash_.c:106
+#: ../../standalone/draksplash_.c:107
msgid "the heigth of the progress bar"
msgstr "hjden p forlbslinjen"
-#: ../../standalone/draksplash_.c:107
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr "farven p forlbslinjen"
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
-msgstr "g tilbage"
-
-#: ../../standalone/draksplash_.c:120
-msgid "preview"
+#: ../../standalone/draksplash_.c:121
+msgid "Preview"
msgstr "smugkig"
-#: ../../standalone/draksplash_.c:121
-msgid "choose color"
-msgstr "vlg farve"
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "gem temaer"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "vlg farve"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr "Vis logo p konsol"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr "Skjul kernens beskeder som standard"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr "Dette tema har endnu ikke nogen startskrm i %s!"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr "gemmer startskrmstema..."
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "Valg af farve for forlbslinje"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr "Du skal vlge en biledfil frst!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Genererer smugkigning ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Kan ikke lave smugkig af opstartsskrm"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13421,6 +13560,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"brug: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "brug: keyboarddrake [--expert] [tastatur]\n"
@@ -13449,11 +13596,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Kan ikke starte levende opgradering!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "ndringen er fortaget, men for at vre effektiv skal du logge ud"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13724,16 +13871,14 @@ msgstr ""
"Din %s-skanner er blevet konfigureret.\n"
"Du kan nu skanne dokumenter med 'XSane' fra Multimedie/grafik iprogrammenuen."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Nogen enheder i maskinelklassen '%s' blev fjernet:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"Nogen enheder i maskinelklassen '%s' blev tilfjet:\n"
@@ -13810,7 +13955,7 @@ msgstr "Installr opdateringer"
msgid "Exit install"
msgstr "Afslut installation"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14056,8 +14201,46 @@ msgstr "Multimedie - CD-brnding"
msgid "Scientific Workstation"
msgstr "Videnskabelig arbejdsstation"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Kan ikke lave smugkig af opstartsskrm"
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "For at indsende en fejlrapport klik da p rapport-knappen.\n"
+#~ "Dette vil bne et vindue i en netlser p https://www.bugzilla.com\n"
+#~ " hvor du vil finde en formular der kan udfyldes. Informationen vist "
+#~ "ovenfor vil blive overfrt til den server\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "lav startskrm trin 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "g til konfiguration af Lilo-startskrm"
+
+#~ msgid "Go back"
+#~ msgstr "g tilbage"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Der findes intet kendt alternativ OSS/ALSA-drivprogram for lydkortet (%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy skal vre ftp://..."
+
+#~ msgid "quit"
+#~ msgstr "afslut"
#~ msgid ""
#~ "Sorry, perl-Expect is not installed/enabled. To use\n"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 57e1acff7..59c7cb5cd 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: MandrakeInstaller\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-08-31 11:53+0200\n"
"Last-Translator: Stefan Siegel <siegel@linux-mandrake.com>\n"
"Language-Team: German Translation Team <cooker-i18n@linux-mandrake.com>\n"
@@ -89,24 +89,24 @@ msgstr "Alle Karten getrennt konfigurieren"
msgid "Use Xinerama extension"
msgstr "Xinerama Erweiterung verwenden"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Nur Karte „%s“ (%s) konfigurieren"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -116,17 +116,17 @@ msgstr ""
"XFree %s. Ihre Karte wird auch von XFree %s unterstützt, wodurch Sie \n"
"bessere 2D-Unterstützung erhalten können."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Ihre Grafikkarte kann mit XFree %s 3D-hardwarebeschleunigt werden."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"XFree %s unterstützt, wodurch Sie bessere 2D-Unterstützung erhalten \n"
"können."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,12 +149,12 @@ msgstr ""
"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Installationsbildschirmtreiber)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Benutzerdefiniert"
@@ -174,32 +174,32 @@ msgstr "Auflösung"
msgid "Test"
msgstr "Test"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Optionen"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Verlassen"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -294,25 +294,25 @@ msgstr "Wählen Sie bitte Auflösung und Farbtiefe"
msgid "Graphics card: %s"
msgstr "Grafikkarte: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr " Abbruch "
@@ -388,11 +388,11 @@ msgstr "XFree86 Server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 Treiber: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X zur Startzeit"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -402,7 +402,7 @@ msgstr ""
"automatisch die grafische Oberfläche (= der X Server) aktiviert wird.\n"
"Wollen Sie, dass X nach jedem Neustart direkt zur Verfügung steht?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgstr ""
"\n"
"Haben Sie einen solchen Ausgang und wollen Sie ihn verwenden?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Um welche Fernsehnorm handelt es sich?"
@@ -494,7 +494,7 @@ msgstr "Kompakt"
msgid "compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Video Modus"
@@ -502,17 +502,17 @@ msgstr "Video Modus"
msgid "Delay before booting default image"
msgstr "Wartezeit vorm Starten des Standard Betriebssystems"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Passwort"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Passwort (erneut)"
@@ -548,14 +548,14 @@ msgstr ""
"Die Option „Gebrauch der Kommandozeilen-Parameter einschränken“ ist ohne \n"
"Angabe eines Passworts wirkungslos"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Die Passwörter stimmen nicht überein"
@@ -598,7 +598,7 @@ msgstr ""
"\n"
"Von welchem Verzeichnis wollen Sie starten?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -606,148 +606,148 @@ msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie können weitere hinzufügen oder existierende ändern."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Hinzufügen"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Fertig"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Ändern"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufügen?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Anderes Betriebssystem (SunOS ...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Anderes Betriebssystem (MacOS ...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Anderes Betriebssystem (Windows ...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Kern"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Verzeichnisbaumwurzel"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Übergeben"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Init-RamDisk"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Schreiben/Lesen"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabelle"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Unsicher"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Identifikator"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Standard"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Größe der Init-RamDisk"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Eintrag löschen"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Leere Einträge sind nicht erlaubt"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Sie Müssen ein Kern-Abbild angeben"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Sie müssen die Verzeichnisbaumwurzel festlegen"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Schnittstelle(n) %s %s gefunden"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Verfügen Sie über weitere?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Verfügen Sie über %s Schnittstellen?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nein"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Hardware Informationen anzeigen"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installation des Treibers für die Karte %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(Modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -756,7 +756,7 @@ msgstr ""
"Sie können nun die Optionen für Modul %s angeben.\n"
"Denken Sie daran, dass Adressen mit „0x“ beginnen müssen, etwa „0x300“"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -767,17 +767,17 @@ msgstr ""
"Optionen haben die Form „name=wert name2=wert2“.\n"
"Beispielsweise: „io=0x300 irq=7“"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modul-Optionen:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Welchen %s-Treiber soll ich versuchen?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -795,15 +795,15 @@ msgstr ""
"Treiber kann in seltenen Fällen zum „Hängenbleiben“ des Rechners führen, was "
"jedoch keine Hardwareschäden nach sich ziehen sollte)"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Automatische Erkennung"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Optionen angeben"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -812,63 +812,63 @@ msgstr ""
"Laden von Modul %s schlug Fehl.\n"
"Wollen Sie es erneut mit anderen Parametern versuchen?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "Zugriff auf Netzwerk-Werkzeuge"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "Zugriff auf Compiler"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefügt)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Dieses Passwort ist zu einfach"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Bitte geben Sie ein Benutzerkennzeichen an"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Das Benutzerkennzeichen sollte nur aus Kleinbuchstaben, Ziffern, \n"
"„-“ und „_“ bestehen"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Dieses Benutzerkennzeichen ist zu lang"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Dieses Benutzerkennzeichen existiert bereits"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Benutzer hinzufügen"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -877,32 +877,32 @@ msgstr ""
"Benutzerkennzeichen einrichten\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Benutzer akzeptieren"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Benutzername"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Benutzerkennzeichen"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Symbol"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -911,19 +911,19 @@ msgstr ""
"ein Benutzer angemeldet wird.\n"
"Wollen Sie davon Gebrauch machen?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Bitte wählen Sie die zu verwendende Sprache."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -932,37 +932,37 @@ msgstr ""
"Sie können andere Sprachen auswählen, die nach der Installation zur "
"Verfügung stehen."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alle"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Kein Teilen"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Sie können die Dateien mittels Samba oder NFS anbieten. Welche Variante "
"wollen Sie?"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Das zwingend benötigte Paket „%s“ fehlt."
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -977,11 +977,11 @@ msgstr ""
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Kennzeichen "
"vornehmen.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Userdrake starten"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -990,31 +990,31 @@ msgstr ""
"Sie können UserDrake verwenden, um Benutzerkennzeichen in diese Gruppe "
"aufzunehmen."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Cracker-Spielplatz"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Schwach"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Hoch"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Höher"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1025,7 +1025,7 @@ msgstr ""
"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
"da Angreifer mangels Passwort an Ihre Daten gelangen können!"
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1033,7 +1033,7 @@ msgstr ""
"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
"Netzwerkrechner kann hier nicht empfohlen werden."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1041,7 +1041,7 @@ msgstr ""
"Das ist die Standard-Sicherheitsebene für Rechner, mit Internetzugang \n"
"als Klient."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1049,7 +1049,7 @@ msgstr ""
"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
"Sicherheitstests durchgeführt."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1066,7 +1066,7 @@ msgstr ""
"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
"verwenden sollte."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1074,32 +1074,32 @@ msgstr ""
"Diese Ebene bietet die selbe Funktionalität, wie die vorherige. Jedoch ist \n"
"das System nun komplett geschlossen. Es ist die höchste Sicherheitsebene."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "DrakSec Grundeinstellungen"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Wählen Sie Ihre Sicherheitsebene"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Sicherheitsebene"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "„libsafe“ bei Servern verwenden"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Eine Bibliothek, die gegen sog. „buffer overflow“-Angriffe schützt."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Sicherheitsadministrator (Kennzeichen oder E-Mail)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1115,7 +1115,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1139,60 +1139,60 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Willkommen zum Betriebssystem-Starter GRUB!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Verwenden Sie die Tasten %c und %c um ein Betriebssystem zu w„hlen."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Zum Starten des BS drcken Sie <Return>. Mit <e> k”nnen Sie das"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "Kommando vorher editieren, mit <c> erhalten Sie eine Kommandozeile."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "In %d Sekunden wird das gew„hlte BS automatisch gestartet."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in „/boot“"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Arbeitsoberfläche"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start-Menü"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
"Sie können den Betriebssystemstarter\n"
"nicht auf einer %s Partition installieren!\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "Es steht noch keine Hilfe zur Verfügung.\n"
@@ -1244,79 +1244,79 @@ msgstr "LILO/GRUB Modus"
msgid "Yaboot mode"
msgstr "Yaboot Modus"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Themen installieren"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Bildschirm-Thema für die Konsole"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Ein neues Thema erzeugen"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Anlegen einer Sicherheitskopie von „%s“ unter „%s.old“."
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Fehler"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "Ich kann keine Sicherheitskopie der LILO-Nachricht anlegen."
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Kopiere „%s“ nach „%s“"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "Ich kann die LILO-Nachricht nicht äern."
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Ich kann die LILO Nachricht nicht finden."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Ich kann „/etc/sysconfig/bootsplash“ nicht anlegen."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Schreiben von %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr "Ich kann „/etc/sysconfig/bootsplash“ nicht anlegen."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Ich kann „mkinitrd -f /boot/initrd-%s.img %s“ nicht ausführen."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Erstellen der RamDisk: „mkinitrd -f /boot/initrd-%s.img %s“."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1325,24 +1325,24 @@ msgstr ""
"Benutzerkennzeichen „lilo“ in einer Konsole aus, um die Themen-Installation "
"zu beenden."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "LILO ausführen"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Anmerkung"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Installation des LILO- und Start-Themas erfolgreich."
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Die Installation des Themas schlug fehl!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1351,21 +1351,21 @@ msgstr ""
"Sie verwenden momentan „%s“ als Betriebssystemstarter.\n"
"Wählen Sie „Konfigurieren“, wenn Sie den Assistenten starten wollen."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurieren"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Startschirmauswahl"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Themen"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1382,44 +1382,44 @@ msgstr ""
"unterschiedliche\n"
"Varianten wählen."
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "LILO-Menü"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Startschirm"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "System-Modus"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "X-Window nach dem Hochfahren automatisch starten "
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nein ich will kein Autologin"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja ich will Autologin mit diesem Kennzeichen und dieser Oberfläche"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr " Ok "
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Ich kann „/etc/inittab“ nicht zum lesen öffnen: %s"
@@ -1517,50 +1517,58 @@ msgstr "Östereich"
msgid "United States"
msgstr "Vereinigte Staaten von Amerika"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Neu"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Aushängen"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Einhängen"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Einhängpunkt"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Bitte geben Sie die WebDAV-Server URL an"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Einhängpunkt: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Optionen: %s"
@@ -1647,7 +1655,7 @@ msgstr "Leer"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Andere"
@@ -1791,7 +1799,7 @@ msgstr ""
"Die gesicherte Partitionstabelle hat nicht dieselbe Größe\n"
"Soll trotzdem fortgefahren werden?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Warnung"
@@ -2360,7 +2368,7 @@ msgid ""
msgstr ""
"Bitte geben Sie Benutzerkennzeichen, Passwort und Domäne des Rechners an."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Benutzerkennzeichen"
@@ -2372,25 +2380,25 @@ msgstr "Domäne"
msgid "Search servers"
msgstr "Server suchen"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatieren von %s schlug Fehl"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr ""
"Ich bin nicht in der Lage, %s mit einem Dateisystem vom Typ %s zu "
"formatieren."
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "Das Einhängen der Partition %s in das Verzeichnis %s schlug fehl."
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "Fehler beim Aushängen von %s: %s"
@@ -2484,47 +2492,110 @@ msgstr "Nichts zu tun."
msgid "Error opening %s for writing: %s"
msgstr "Fehler beim Öffnen von %s zum Schreiben: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "Kein alternativer Treiber"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
"Es existiert kein alternativer OSS/ALSA Treiber für Ihre Soundkarte (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Sound Konfiguration"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Hier können Sie einen alternativen Treiber (entweder OSS odr ALSA) für Ihre "
"Soundkarte (%s) auswählen"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Treiber:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Hilfe"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Einen Moment ... ich richte die Konfiguration ein"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Bitte warten"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Kein bekannter Treiber"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Es gibt keinen bekannten Treiber für Ihre Soundkarte (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Unbekannter Treiber"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, fuzzy, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2655,7 +2726,8 @@ msgid "/_Quit"
msgstr "/_Beenden"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hilfe"
@@ -2676,14 +2748,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Fehler Melden"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Über ..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Über HardDrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2691,56 +2767,53 @@ msgstr ""
"HardDrake - das Mandrake Linux Hardware-Konfigurationswerkzeug.\n"
"Version:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Autor:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "HardDrake2 Version "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Gefundene Hardware"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informationen"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Modul konfigurieren"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Konfigurationswerkzeug starten"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Erkennung läuft"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Bitte warten"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Sie können alle Modulparamerter hier einstellen."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "„%s“ ausführen ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "Primär"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "Sekundär"
@@ -4779,7 +4852,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Sie müssen auch %s formatieren."
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4804,7 +4877,7 @@ msgstr ""
"\n"
"Wollen Sie diese Server wirklich installieren?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4818,22 +4891,22 @@ msgstr ""
"\n"
"Wollen Sie diese Pakete wirklich entfernen?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
"Ich kann kein Broadcast machen,\n"
"da keine NIS Domäne angegeben wurde"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Legen Sie eine leere, FAT formatierte Diskette in Laufwerk %s ein."
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Diese Diskette ist nich FAT formatiert"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4841,12 +4914,12 @@ msgstr ""
"Um diese gespeicherte Paketauswahl zu verwenden, starten Sie die \n"
"Installation bitte mit: „boot defcfg=floppy“"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fehler beim Lesen der Datei %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -5097,7 +5170,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Willkommen auf %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Kein Disketten-Laufwerk verfügbar"
@@ -5128,11 +5201,11 @@ msgstr "Installationsart"
msgid "Please choose one of the following classes of installation:"
msgstr "Bitte wählen Sie eine der folgenden Installationsklassen:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Auswahl der Paketgruppen"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individuelle Paketauswahl"
@@ -5214,7 +5287,7 @@ msgstr "Anzeige automatisch markierter Pakete"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installation"
@@ -5234,7 +5307,7 @@ msgstr "Minimal-Installation"
msgid "Choose the packages you want to install"
msgstr "Zu installierende Pakete auswählen"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Installation wird durchgeführt"
@@ -5261,17 +5334,17 @@ msgid "Installing package %s"
msgstr "Installation des Pakets %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Akzeptieren"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Zurückweisen"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5287,16 +5360,16 @@ msgstr ""
"Falls Sie sie nicht vorliegen haben, drücken Sie Abbruch."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
@@ -5423,7 +5496,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5719,7 +5792,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Sind Sie sicher, dass Sie die Lizenz zurückweisen wollen?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatur"
@@ -5934,11 +6007,11 @@ msgstr ""
msgid "Selected size is larger than available space"
msgstr "Gewünschte Größe übersteigt den verfügbaren Platz"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Installationsklasse"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5946,19 +6019,19 @@ msgstr ""
"Sie haben keine Paketgruppe ausgewählt\n"
"Bitte wählen Sie die minimale Installation, die Sie wünschen."
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Mit X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Mit minimaler Dokumentation (Empfohlen)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Extrem minimale Installation (ohne „urpmi“)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5969,16 +6042,16 @@ msgstr ""
"falls nur einige der aufgeführten CDs fehlen, entfernen Sie die \n"
"entsprechende Markierung und wählen Sie dann „OK“."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM „%s“"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Installation vorbereiten"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5987,23 +6060,23 @@ msgstr ""
"Installiere Paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Einstellungen für nach der Installation"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
"Bitte legen Sie die Diskette der zu aktualisiernden Module in Laufwerk %s "
"ein."
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -6079,7 +6152,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -6098,163 +6171,163 @@ msgstr ""
"\n"
"Möchten Sie die Aktualisierungen vornehmen?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Verbindung mit dem Mandrake Linux Web-Server aufbauen, um eine Liste\n"
"verfügbarer Pakete zu erhalten."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Bitte wählen Sie einen Mirror, von dem Sie die Pakete holen wollen."
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Verbindung mit dem Mirror aufbauen, um eine Liste verfügbarer Pakete zu "
"erhalten."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardware Uhr liefert GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP Server"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "CUPS-Server im Netzwerkbetrieb"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Kein Drucker"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Verfügen Sie über eine ISA soundkarte?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Starten Sie „sndconfig“ nach der Installation, um Ihre Soundkarte "
"einzurichten."
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Es wurde keine Soundkarte gefunden. Versuchen Sie „harddrake“nach der "
"Installation."
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Zusammenfassung"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Maus"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Zeitzone"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Drucker"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN Karte"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Soundkarte"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-Karte"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Windows Domäne"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokale Dateien"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root-Passwort setzen"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Kein Passwort"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6286,19 +6359,19 @@ msgstr ""
"Mit „wbinfo -t“ können Sie anschließend testetn, ob die Anmeldung "
"erfolgreich war."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Windows Domänenauthentifizierung"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Name des Domänenadministrators"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Paswort des Administrators"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6329,19 +6402,19 @@ msgstr ""
"Falls Sie eine Startdiskette erstellen wollen, legen Sie eine Diskette \n"
"ohne relevante Daten in ihr erstes Laufwerk und drücken Sie „OK“."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "erste Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "zweite Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Überspringen"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6370,7 +6443,7 @@ msgstr ""
"Möchten Sie jetzt eine Startdiskette für Ihr System erstellen?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6384,30 +6457,30 @@ msgstr ""
"Das Erstellen einer Startdiskette auf einem 1,44 MB Medium \n"
"schlä sicher fehl, da XFS einen sehr großen Treiber benötigt)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Ich kann kein Laufwerk finden"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Wählen Sie das Laufwerk, in dem Sie die Start-Diskette erstellen wollen"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
"Legen Sie eine Diskette, die keine relevanten Daten mehr enthält in „%s“ ein."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Startdiskette wird erstellt..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Betriebssystemstarter vorbereiten"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6421,11 +6494,11 @@ msgstr ""
"„BootX“ verwenden müssen um LINUX auf Ihrem Rechner\n"
"zu starten."
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Möchten Sie „aboot“ verwenden?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6434,16 +6507,16 @@ msgstr ""
"mit Gewalt versuchen, auch wenn dies die Zerstörung der ersten \n"
"Partition verursachen kann?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Betriebssystemstarter installieren"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Die Installation des BS-Starters schlug Fehl. Folgender Fehler trat auf:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6461,17 +6534,17 @@ msgstr ""
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Legen Sie eine leere Diskette in das %s ein."
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6481,7 +6554,7 @@ msgstr ""
"\n"
"Wollen Sie DrakX wirklich beenden?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6511,15 +6584,15 @@ msgstr ""
"Wie Sie Ihr System warten können, erfahren Sie im Kapitel „Nach der "
"Installation“ im offiziellen Benutzerhandbuch von Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6536,15 +6609,15 @@ msgstr ""
"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
"Installation durchzuführen.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatisiert"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Erneut abspielen"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Paketauswahl speichern"
@@ -6580,14 +6653,14 @@ msgstr "Fortgeschritten"
msgid "Basic"
msgstr "Einfach"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Zurück"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Weiter"
@@ -7032,7 +7105,7 @@ msgstr "Rechte „Windows“-Taste"
msgid "Circular mounts %s\n"
msgstr "Schleife bei den Einhängpunkten %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Entfernen Sie erst die Logischen Medien\n"
@@ -7169,15 +7242,15 @@ msgstr "keine"
msgid "No mouse"
msgstr "Keine Maus"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Bitte testen Sie Ihre Maus"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Um Ihre Maus zu aktivieren:"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEGEN SIE IHR MAUS-RAD!"
@@ -7213,11 +7286,11 @@ msgstr "Baum verkleinern"
msgid "Toggle between flat and group sorted"
msgstr "Umschalten zwischen unsortiert und gruppiert"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Internetverbindung"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -7227,23 +7300,19 @@ msgstr ""
"Einige Verbindungen benutzen jedoch pptp, andere dhcp.\n"
"Wenn Sie nicht wissen was Sie brauchen, wählen Sie „pppoe verwenden“"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "DHCP verwenden"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "PPPOE verwenden"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "PPTP verwenden"
@@ -7347,7 +7416,7 @@ msgstr ""
msgid "no network card found"
msgstr "Keine Netzwerkkarte gefunden"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Netzwerk konfigurieren"
@@ -7363,15 +7432,15 @@ msgstr ""
"Ihr Rechnername sollte auch die Domain beinhalten,\n"
"etwa „meinrechner.meineabteilung.meinefirma.de“."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Rechnername"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Netzwerk Konfigurationsassistent"
@@ -7420,8 +7489,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Alte Konfiguration (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN Konfiguration"
@@ -7457,23 +7526,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Welches Protokoll wollen Sie verwenden?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Welchen Kartentyp verwenden Sie?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Keine Ahnung"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA/PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7488,19 +7562,19 @@ msgstr ""
"Falls Sie eine PCMCIA-Karte besitzen, müssen Sie IRQ und E/A-Bereich Ihrer "
"Karte kennen.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Abbruch"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Fortfahren"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Bitte wählen Sie Ihre ISDN Karte"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7509,7 +7583,7 @@ msgstr ""
"kenne sie jedoch nicht. Bitte helfen Sie mir,\n"
"indem Sie im nächsten Menü eine auswählen."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Ich konnte keine PCI ISDN-Karte finden.\n"
@@ -7563,7 +7637,7 @@ msgstr "Erster DNS Server (optional)"
msgid "Second DNS Server (optional)"
msgstr "Zweiter DNS Server (optional)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7571,7 +7645,7 @@ msgstr ""
"\n"
"Sie können die Verbindung trennen oder sie neu konfigurieren."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7579,11 +7653,11 @@ msgstr ""
"\n"
"Sie können Ihre Internetverbindung neu konfigurieren"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Sie sind momentan mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7592,32 +7666,32 @@ msgstr ""
"Sie können eine Internetverbindung aufbauen oder die Verbindung neu "
"konfigurieren"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Sie sind momentan nicht mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Verbinden"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Verbindung trennen"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Die Verbindung konfigurieren"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetverbindung und -einrichtung"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Wir werden nun die Verbindung „%s“ konfigurieren."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7636,12 +7710,12 @@ msgstr ""
"\n"
"Wählen Sie „OK“, um fortzufahren."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netzwerk konfigurieren"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7653,7 +7727,7 @@ msgstr ""
"„Abbruch“, um Ihre Internet- und Netzwerk-Konfiguration neu zu\n"
"konfigurieren.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7665,72 +7739,72 @@ msgstr ""
"Ich versuche nun Ihre Internet-/Netzwerk-Verbindung zu konfigurieren.\n"
"Falls Sie keine Autodetektion wünschen, entfernen Sie bitte die Markierung.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Wählen Sie das Profil, dass eingestellt werden soll"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Autoerkennung benutzen"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Expertenmodus"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Geräteerkennung..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normale Modem Verbindung"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "an Prot %s gefunden"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN Verbindung"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s gefunden"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL Verbindung"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "an Schnittstelle %s gefunden"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabel Verbindung"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kabel Verbindung gefunden"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN Verbindung"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "Netzwerkkarte(n) gefunden"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Wählen Sie die Verbindung, die Sie konfigurieren wollen"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7741,23 +7815,23 @@ msgstr ""
"ich versuchen soll.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internet-Verbindung"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Möchten Sie die Verbindung bei Betriebssystemstart herstellen?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Netzwerk Konfiguration"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Das Netzwerk muss neu gestartet werden"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7768,7 +7842,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7778,7 +7852,7 @@ msgstr ""
"\n"
"Die Konfiguration wird nun in Ihr System integriert.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7787,7 +7861,7 @@ msgstr ""
"neu zu starten, um Probleme, die durch die Änderung des\n"
"Rechnernamens hervorgerufen werden, zu vermeiden."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7798,7 +7872,7 @@ msgstr ""
"Kontrollzentrum. Falls die Verbindung nicht funktioniert, sollten Sie erneut "
"die Konfguration starten."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7810,7 +7884,7 @@ msgstr ""
"Drücken Sie einfach „OK“, um die Einstellungen zu behalten.\n"
"Fall Sie Felder verändern, wird die Konfiguration überschrieben."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7820,42 +7894,42 @@ msgstr ""
"Jeder Eintrag muss als dezimale IP-Adresse in Punktschreibweise \n"
"angegeben werden (etwa „192.168.1.42“)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurieren der Netzwerkkarte %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (Treiber %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP Adresse"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netzmaske"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatische IP-Adressen Zuweisung"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Beim BS-Start aktivieren"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7867,42 +7941,52 @@ msgstr ""
"etwa „meinrechner.meineabteilung.meinefirma.de“.\n"
"Falls Sie ein Gateway verwenden, sollten Sie auch dessen IP-Adresse angeben."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS-Server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (etwa %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway Gerät"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Proxies einstellen"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP Proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP Proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Netzwerkkarten-ID überwachen (sinnvoll für Laptops)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy muss „http://...“ sein"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy muss „ftp://...“ sein"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Die URL muss mit „http://“ oder „ftp://“ beginnen"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9464,7 +9548,7 @@ msgstr "Drucken auf Drucker „%s“"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -10027,10 +10111,6 @@ msgstr ""
"Falls sie keinen FTP Proxy wolen, lassen Sie einfach\n"
"alle Felder leer."
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Die URL muss mit „http://“ oder „ftp://“ beginnen"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -10079,6 +10159,43 @@ msgstr "mkraid schlug Fehl (Möglicherweise fehlen die RAID-Tools)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nicht genügend Partitionen für RAID Level %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Sicherheitsebene"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sicherheitsebene"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Sicherheitsadministrator (Kennzeichen oder E-Mail)"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Standard)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Wählen Sie Ihre Sicherheitsebene"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Bitte warten, bereite Installation vor"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Startet das ALSA (Advanced Linux Sound Architecture) Sound System"
@@ -10420,7 +10537,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Gemeinsamer Dateizugriff"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "System"
@@ -10516,7 +10633,7 @@ msgstr "Nutzen Sie das Internet nach Ihren Wünschen"
#: ../../share/advertising/03-internet.pl_.c:10
#, fuzzy
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10575,7 +10692,7 @@ msgstr "Arbeitsumgebungen"
#: ../../share/advertising/07-desktop.pl_.c:10
#, fuzzy
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
"Mandrake Linux 9.0 bietet 11 Arbeitsumgebungen, die Sie nach Ihren Wünschen "
@@ -10605,7 +10722,7 @@ msgstr "Verwandeln Sie Ihren Rechner in einen zuverlässigen Server."
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Verwandeln Sie Ihren Rechner mit ein paar Mausklicks in einen "
@@ -10626,7 +10743,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
"Dieses Firewall-Produkt enthält die Netzwerkkomponenten, um all Ihren "
@@ -10643,7 +10760,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -10691,8 +10808,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -10728,11 +10845,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Pakete Installieren ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Bitte loggen Sie sich aus, und drücken Sie Ctrl-Alt-Rücktaste"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
@@ -10778,16 +10895,6 @@ msgstr "Benutzer hinzufügen"
msgid "Add/Del Clients"
msgstr "DHCP-Klient"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Hilfe"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Bootdiskette"
@@ -10838,49 +10945,64 @@ msgstr "Benutzer hinzufügen -->"
msgid "<-- Del User"
msgstr "<-- Benutzer löschen"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Klient hinzufügen -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Klient löschen"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "DHCP Konfigurieren ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Expertenkonfiguration"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Konfiguration speichern"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Bitte legen Sie eine Diskette ein:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Kein Diskettenzugriff möglich!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Sie können die Diskette nun entfernen"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Kein Disketten-Laufwerk verfügbar"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Es trat ein Fehler auf! Ist „mkisofs“ installiert?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "„/etc/dhcpd.conf“ muss erst angelegt werden!"
@@ -11024,13 +11146,13 @@ msgstr ""
" DrakBackup Report Details\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Vortschritt"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -11039,41 +11161,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Kein Passwort"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -11084,65 +11206,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Systemdateien sichern ..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Backup-Dateien auf der Festplatte ..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Benutzerdateien sichern ..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Festplattenbackup in Bearbeitung ..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Andere Dateien sichern ..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -11150,7 +11272,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -11159,7 +11281,7 @@ msgstr ""
"Dateiliste per FTP senden: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
#, fuzzy
msgid ""
"\n"
@@ -11170,41 +11292,41 @@ msgstr ""
"(!) FTP Verbindungsprobleme: Es war nicht möglich, Ihre Dateien per FTP zu "
"übertragen.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Fehler beim Verschicken der Mail. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Dateiauswahl"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
"Wählen Sie die Dateien oder Verzeichnisse und betätigen Sie die Schaltfläche "
"„Hinzufügen“"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -11212,27 +11334,27 @@ msgstr ""
"\n"
"Bitte wählen Sie alle benötigten Parameter.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Diese Optionen kön alle Ihre Dateien im Verzeichnis „/etc“ sichern und "
"wiederherstellen\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Sichern Ihrer Systemdateien (Verzeicnis „/etc“)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Inkrementelles Backup (alte Backups nicht überschreiben)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Keine kritischen Dateien (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -11240,66 +11362,68 @@ msgstr ""
"Mit dieser Option sind Sie in der Lage, jede Version Ihres \n"
"„/etc“ Verzeichnisses wiederherzustellen."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Bitte wählen Sie alle Kennzeichen, deren Dateinen mitgesichert werden sollen."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Die Browser-Caches nicht archivieren."
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Markierte entfernen"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Benutzer"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "FTP-Verbindung zum erstellen der Sicherungskopien verwenden"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Übertragen"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Rechnernamen oder IP eingeben."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -11308,69 +11432,69 @@ msgstr ""
"Bitte geben Sie das Verzeichnis an,\n"
" in dem die Archive erstellt werden sollen."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Bitte geben Sie Ihr Benutzerkennzeichen ein"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Bitte geben Sie Ihr Passwort ein"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Passwort behalten"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
#, fuzzy
msgid "Need hostname, username and password!"
msgstr "Ich mich unter „%s“ micht anmelden! Stimmt das Passwort?"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Sicherungskopie auf CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Bitte wählen Sie Ihren CD-Paltz"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Übertragen"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11378,36 +11502,36 @@ msgstr ""
"Bitte geben Sie den Gerätenamen \n"
"Ihres Brenners an, etwa „0,1,0“."
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Datei auswählen"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Bitte geben Sie den Gerätenamen fü Archivierung an."
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11415,57 +11539,57 @@ msgstr ""
"Bitte geben Sie die Maximalgröße \n"
"für DrakBackup an."
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Quota für Backup-Datei verwenden."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Netzwerk"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Festplatte/NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Typ"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "stündlich"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "täglich"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "wöchendlich"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "monatlich"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Dämon verwenden"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11473,7 +11597,7 @@ msgstr ""
"Bitte wählen Sie das Zeitintervall \n"
"zwischen zwei Sicherungen."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11481,7 +11605,7 @@ msgstr ""
"Bitte wählen Sie ein\n"
"Sicherungsmedium."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11489,71 +11613,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Stellen Sie sicher, dass der Cron-Dämon als Dienst aktiviert ist."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "E-Mail Bericht nach jedem Sicherungsvorgang an: "
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Was"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Wo"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Wann"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Mehr Parameter"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "DrakBackup Konfiguration"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Bitte wählen Sie wohin Sie die Sicherungskopien machen wollen."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "auf Festplatte"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "über Netzwerk"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Bitte wählen Sie, was Sie sichern wollen"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "System sichern"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Benutzerkennzeichen sichern"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Benutzerkennzeichen auswählen"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11561,7 +11685,7 @@ msgstr ""
"\n"
"Sicherungsquellen: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11569,7 +11693,7 @@ msgstr ""
"\n"
"- Systemdateien:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11577,7 +11701,7 @@ msgstr ""
"\n"
"- Benutzerdateien:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11585,7 +11709,7 @@ msgstr ""
"\n"
"- Sonstige Dateien:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11594,32 +11718,32 @@ msgstr ""
"\n"
"- Auf Festplatte sichern unter: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Mausschnittstelle: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11628,12 +11752,12 @@ msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11642,7 +11766,7 @@ msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11651,7 +11775,7 @@ msgstr ""
"\t\t Benutzer: %s\n"
"\t\t Pfad: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11659,19 +11783,19 @@ msgstr ""
"\n"
"- Optionen:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tKeine Systemdateien\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSicherungen verwenden „tar“ und „bzip2“\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tSicherungen verwenden „tar“ und „gzip“\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11680,42 +11804,42 @@ msgstr ""
"\n"
"- Dämon (%s) enthält:\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t- Festplatte.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t- CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t- Netzwerk per SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Keine Konfiguration. Wählen Sie dein Assistenten oder Fortgeschritten.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11723,7 +11847,7 @@ msgstr ""
"Liste der wiederherzustellenden Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11731,260 +11855,260 @@ msgstr ""
"Liste der beschädigten Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr ""
"Bitte entfernen Sie die Markierung oder löschen Sie sie das nächste Mal."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Die Sicherungen sind beschädigt."
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr " Alle Ihre gewälhten Daten wurden "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " erfolgreich auf %s wiederhergestellt "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Konfiguration wiederherstellen "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK, die übrigen Dateien zu aktualisieren."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Liste wiederherzustellender Kennzeichen (letztes Datum per Kennzeichen ist "
"wichtig)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Systemdateien sichern vor:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Bitte wählen Sie, welches Datum wiederhergestellt werden soll."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Auf Festpaltte sichern"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP Verbindung"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Sichere Verbindung"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Von Festplatte wiederherstellen"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Wählen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Anderes Medium"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "System wiederherstellen"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Auswahl des Pfades der wiederhergestellt werden soll (statt „/“"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Erstelle Sicherung vor dem Wiederherstellen (nur für inkrementelle "
"Sicherungen)."
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Benutzerkennzeichen vor dem Wiederherstellen entfernen."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Markierte entfernen"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Anlegen einer Sicherheitskopie von „%s“ unter „%s.old“."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Von Festplatte wiederherstellen"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Partitionstabelle wiederherstellen"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Rechnername"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Passwort"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Benutzerkennzeichen"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Rechnername: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Alle Sicherungen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Benutzergeführte Wiederherstellung"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Partitionstabelle wiederherstellen"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "<- Zurück"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Speichern"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Sicherung erstellen"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Wiederherstellen"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -11995,14 +12119,14 @@ msgstr ""
" Ihre Bericht-Mail konnte nicht versandt werden.\n"
" Bitte richten Sie Sendmail korrekt ein."
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -12011,19 +12135,19 @@ msgstr ""
"Fehler bei der Üertragung via FTP.\n"
"Bitte korrigieren Sie Ihre FTP-Konfiguration."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Bitte wählen Sie die wiederherzustellenden Daten..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Bitte wählen Sie ein Sicherungsmedium..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Bitte wählen Sie die zu sichernden Daten..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -12031,59 +12155,59 @@ msgstr ""
"Keine Konfigurationsdatei gefunde.\n"
"Bitte wählen Sie den „Assistenten“ oder „Erweitert“."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "In Entwicklung, haben Sie noch etwas Geduld ..."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Systemdateien sichern"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Benutzerdateien sichern"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Andere Dateien sichern"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Fortschritt"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "Datenüagung via FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Dateien übertragen ..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen."
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Sicherungskonfiguration anzeiegen"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Assistentengestützte Konfiguration"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Expertenkonfiguration"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Jetzt sichern"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "DrakBackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
#, fuzzy
msgid ""
"options description:\n"
@@ -12146,7 +12270,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -12161,7 +12285,7 @@ msgstr ""
" in „/etc/postfix/main.cf“ korrigieren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -12244,7 +12368,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
#, fuzzy
msgid ""
"restore description:\n"
@@ -12315,18 +12439,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by Sebastien DUPONT <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -12356,7 +12480,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12396,7 +12520,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12414,7 +12538,7 @@ msgstr ""
"Rechner erstellt werden.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12437,7 +12561,7 @@ msgstr ""
"Seien Sie daher vorsichtig und ändern Sie die Sicherungskopien \n"
"nicht manuell.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12519,8 +12643,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsolen-Werkzeuge"
@@ -12597,28 +12721,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Port"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Nach dem Entfernen"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Die Bildschim-Schnappschüsse liegen nach der Installation unter „%s“"
@@ -12718,10 +12842,6 @@ msgstr "Assistent..."
msgid "Apply"
msgstr "Anwenden"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Einen Moment ... ich richte die Konfiguration ein"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Verbunden"
@@ -12845,7 +12965,7 @@ msgstr " Modulname "
msgid "Size"
msgstr " Größe "
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "DrakFloppy"
@@ -12910,12 +13030,12 @@ msgstr "Ausgabe"
msgid "Build the disk"
msgstr " Diskette erstellen "
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Stellen Sie sicher, dass ein Medium in Laufwerk %s liegt."
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12924,12 +13044,12 @@ msgstr ""
"In Laufwerk %s liegt kein Medum.\n"
"Bitte legen Sie eins ein."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ich kann nicht forken: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13421,158 +13541,158 @@ msgstr ""
"\n"
"Wählen Sie „Konfigurieren“ wenn Sie den Assistenten starten wollen."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Arbeitsgruppe"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "Partition %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Benutzer"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Löschen"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Fertig"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Modul hinzufügen"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Drucker hinzufügen"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Markierung löschen"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Markierte entfernen"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Benutzer akzeptieren"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Version: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Autoerkennung benutzen"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Autoerkennung benutzen"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Startschirmauswahl"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Benutzer"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Arbeitsgruppe"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nicht Verbunden"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13584,136 +13704,146 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Boot-Disketten Erstellung"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Auflösung"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Wählen Sie eine Datei"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Freigabename"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Einstellungen für nach der Installation"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Verlassen"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Themen installieren"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Ich kan keine Start-Vorschau erzeugen"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "Gerät"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "Gerät"
+msgid "Save theme"
+msgstr "Themen installieren"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Wählen Sie Ihren Monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
#, fuzzy
msgid "Display logo on Console"
msgstr "Bildschirm-Thema für die Konsole"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "Farbauswahl für den Fortschrittsbalken"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Sie müssen einen Drucker wählen/ein Gerät eingeben!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Vorschau erzeugen ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Ich kan keine Start-Vorschau erzeugen"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13848,6 +13978,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "Verwendung: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "Verwendung: keyboarddrake [--expert] [keyboard]\n"
@@ -13877,13 +14014,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ich bin nicht in der Lage, eine Live Aktualisierung durchzuführen!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
"Neuanmeldung wirksam"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "LogDrake"
@@ -14151,16 +14288,14 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Einige Geräte in der Klasse %s wurden entfernt:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"Einige Geräte in der Klasse %s wurden hinzugefügt:\n"
@@ -14237,7 +14372,7 @@ msgstr "Systemaktualisierungen"
msgid "Exit install"
msgstr "Installation beenden"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14488,8 +14623,28 @@ msgstr "Multimedia / CD-Brenner"
msgid "Scientific Workstation"
msgstr "Wissenschaftlicher Arbeitsplatzrechner"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Ich kan keine Start-Vorschau erzeugen"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Einstellungen für nach der Installation"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Es existiert kein alternativer OSS/ALSA Treiber für Ihre Soundkarte (%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy muss „ftp://...“ sein"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Verlassen"
#~ msgid "%s"
#~ msgstr "%s"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 37c9a428e..856746718 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-09-04 00:12+0300\n"
"Last-Translator: (Nick Niktaris) <niktaris@yahoo.com>\n"
"Language-Team: Greek <nls@hellug.gr>\n"
@@ -90,24 +90,24 @@ msgstr " "
msgid "Use Xinerama extension"
msgstr " Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr " \"%s\" %s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s "
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -118,19 +118,19 @@ msgstr ""
" XFree %s "
" ."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
" XFree "
"%s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s "
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -143,7 +143,7 @@ msgstr ""
" XFree %s "
" ."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -153,12 +153,12 @@ msgstr ""
"%s,\n"
": - ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac ( )"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr ""
@@ -178,32 +178,32 @@ msgstr ""
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr ""
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr ""
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr ""
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -300,25 +300,25 @@ msgstr " "
msgid "Graphics card: %s"
msgstr " : %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr ""
@@ -396,11 +396,11 @@ msgstr " XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr " XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr " "
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -410,7 +410,7 @@ msgstr ""
" (XFree).\n"
" ;"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr " ;"
@@ -494,7 +494,7 @@ msgstr ""
msgid "compact"
msgstr ""
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr " "
@@ -502,17 +502,17 @@ msgstr " "
msgid "Delay before booting default image"
msgstr " "
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr " "
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr " ()"
@@ -548,14 +548,14 @@ msgstr ""
" `` '' "
""
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr " "
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr " "
@@ -597,7 +597,7 @@ msgstr ""
"\n"
" ;"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -605,148 +605,148 @@ msgstr ""
" .\n"
" ."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr ""
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr ""
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr ""
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr " ;"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr " (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr " (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr " (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr ""
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr ""
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr ""
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr ""
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr ""
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr ""
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr " Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr " "
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr " "
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr " "
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr " root"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr " "
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr " %s %s "
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr " ;"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr " %s;"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr ""
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr ""
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr " "
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr " %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "( %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -756,7 +756,7 @@ msgstr ""
" 0x "
"'0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -767,17 +767,17 @@ msgstr ""
" ``= 2=2 ...''.\n"
" , ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr " :"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr " %s ;"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -794,15 +794,15 @@ msgstr ""
" ; \n"
" , ."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr " "
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr " "
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -811,62 +811,62 @@ msgstr ""
" %s .\n"
" ;"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr " "
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr " rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr " \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr " "
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr " "
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "( %s )"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr " "
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr " "
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
" , , `-' `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr " "
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr " "
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr " "
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -875,32 +875,32 @@ msgstr ""
" \n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr " "
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr " "
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr " "
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr " (shell)"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr " "
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -909,19 +909,19 @@ msgstr ""
" .\n"
" ;"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr " :"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr " :"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr " ."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -931,37 +931,37 @@ msgstr ""
" \n"
" ."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr ""
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr " "
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr " "
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr " %s . ;"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
" NFS Samba. "
"."
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr " ( %s ) "
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -975,11 +975,11 @@ msgstr ""
"\n"
" \"\" .\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr " userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -988,31 +988,31 @@ msgstr ""
" "
"userdrake."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr " Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr ""
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr ""
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr ""
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr ""
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1022,7 +1022,7 @@ msgstr ""
" , . \n"
" LAN. ."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1030,7 +1030,7 @@ msgstr ""
" , "
" ."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1038,7 +1038,7 @@ msgstr ""
" "
" ."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1046,7 +1046,7 @@ msgstr ""
" , "
"."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1062,7 +1062,7 @@ msgstr ""
": "
" "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1070,32 +1070,32 @@ msgstr ""
" , "
". ."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr " DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr " "
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr " "
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr " libsafe "
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr " ( )"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1111,7 +1111,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1135,58 +1135,58 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr " /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr " %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr " .\n"
@@ -1238,63 +1238,63 @@ msgstr " Lilo/grub"
msgid "Yaboot mode"
msgstr " Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr " "
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr " "
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr " "
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr " %s %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr ""
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr " lilo"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr " %s %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr " lilo"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr " lilo"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr " /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr " %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1302,17 +1302,17 @@ msgstr ""
" /etc/sysconfig/bootsplash\n"
" ."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr " mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr " initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1321,24 +1321,24 @@ msgstr ""
" \"lilo\" root "
" LiLo"
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr " 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr " LiLo Bootsplash"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr " !"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1347,21 +1347,21 @@ msgstr ""
" %s .\n"
" ."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr ""
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr " Splash"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1376,44 +1376,44 @@ msgstr ""
" \n"
""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr " Lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr " "
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr " "
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ", "
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ", (, )"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr " /etc/inittab : %s"
@@ -1510,50 +1510,58 @@ msgstr ""
msgid "United States"
msgstr "..."
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr " "
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr " WebDAV"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr " http:// https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr ":"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr " : "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr ": %s"
@@ -1641,7 +1649,7 @@ msgstr ""
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr ""
@@ -1785,7 +1793,7 @@ msgstr ""
" \n"
" ;"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr ""
@@ -2347,7 +2355,7 @@ msgstr ""
" "
" host."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr " "
@@ -2359,23 +2367,23 @@ msgstr ""
msgid "Search servers"
msgstr " "
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s "
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr " %s %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr " %s %s "
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr " %s: %s"
@@ -2470,47 +2478,110 @@ msgstr " "
msgid "Error opening %s for writing: %s"
msgstr " %s : %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr " "
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
" OSS/ALSA (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr " "
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
" (OSS ALSA) "
" (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr ":"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr " ... "
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr " "
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr " "
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr " (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr " "
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2628,7 +2699,8 @@ msgid "/_Quit"
msgstr "/_"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_"
@@ -2649,14 +2721,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_ Bug"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_ ..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr " Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2664,56 +2740,53 @@ msgstr ""
" HardDrake, Mandrake\n"
":"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr " Harddrake2 "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr " "
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr ""
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr " "
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr " "
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr " %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr " "
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr " ."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr " \"%s\"..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr ""
@@ -4105,7 +4178,7 @@ msgstr ""
msgid "You must also format %s"
msgstr " %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4130,7 +4203,7 @@ msgstr ""
"\n"
" ;\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4143,20 +4216,20 @@ msgstr ""
"\n"
" ;\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr " broadcast NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr " FAT %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr " FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4164,12 +4237,12 @@ msgstr ""
" , "
" ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr " %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4418,7 +4491,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr " %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr " "
@@ -4449,11 +4522,11 @@ msgstr " "
msgid "Please choose one of the following classes of installation:"
msgstr " :"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr " "
@@ -4530,7 +4603,7 @@ msgstr " "
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr ""
@@ -4550,7 +4623,7 @@ msgstr " "
msgid "Choose the packages you want to install"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr ""
@@ -4577,17 +4650,17 @@ msgid "Installing package %s"
msgstr " %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr ""
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4602,16 +4675,16 @@ msgstr ""
" , CdRom."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr " ;"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr " :"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr " :"
@@ -4707,7 +4780,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4785,7 +4858,7 @@ msgid "Are you sure you refuse the licence?"
msgstr " ;"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr ""
@@ -4998,11 +5071,11 @@ msgstr " "
msgid "Selected size is larger than available space"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5010,19 +5083,19 @@ msgstr ""
" .\n"
" :"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr " (!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr " ( urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5032,16 +5105,16 @@ msgstr ""
" CDs, .\n"
" , Ok."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5050,21 +5123,21 @@ msgstr ""
" %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5130,7 +5203,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5151,160 +5224,160 @@ msgstr ""
" ;"
# fuzzy
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
" Mandrake Linux "
"..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr " ..."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr " ;"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr " GMT ( )"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr " ( NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr " NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr " CUPS"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr " ISA;"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
" \"sndconfig\" "
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
" . \"harddrake\" "
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr " ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr " TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr " Windows "
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr " root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
" ( %d "
")"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr " LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr " LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr " NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr " NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr " NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5320,19 +5393,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr " Windows"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5363,19 +5436,19 @@ msgstr ""
"\n"
" \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5401,7 +5474,7 @@ msgstr ""
" ;\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5415,28 +5488,28 @@ msgstr ""
" 1.44 Mb ,\n"
" XFS .)"
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr ", "
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr " ..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr " ..."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5448,11 +5521,11 @@ msgstr ""
" , \n"
" BootX "
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr " aboot;"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5461,17 +5534,17 @@ msgstr ""
" , "
" ;"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
" . "
":"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5490,17 +5563,17 @@ msgstr ""
" "
" ."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr " ..."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5510,7 +5583,7 @@ msgstr ""
"\n"
" ;"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5544,15 +5617,15 @@ msgstr ""
"\n"
" Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5566,15 +5639,15 @@ msgstr ""
"\n"
" .\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr " "
@@ -5610,14 +5683,14 @@ msgstr " "
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- "
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr ""
@@ -6060,7 +6133,7 @@ msgstr " \"Windows\""
msgid "Circular mounts %s\n"
msgstr " %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr " \n"
@@ -6197,15 +6270,15 @@ msgstr ""
msgid "No mouse"
msgstr " "
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr " "
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr " "
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr " !"
@@ -6241,11 +6314,11 @@ msgstr " "
msgid "Toggle between flat and group sorted"
msgstr " "
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr " "
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6255,23 +6328,19 @@ msgstr ""
" pptp, dhcp.\n"
" , ' pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr " dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr " pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr " pptp"
@@ -6374,7 +6443,7 @@ msgstr ""
msgid "no network card found"
msgstr " "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr " "
@@ -6390,15 +6459,15 @@ msgstr ""
" ,\n"
" .. ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr " "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr " "
@@ -6446,8 +6515,8 @@ msgid "Old configuration (isdn4net)"
msgstr " (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr " ISDN"
@@ -6483,23 +6552,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr " ;"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr " ;"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr " "
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6512,19 +6586,19 @@ msgstr ""
"\n"
" PCMCIA , irq io .\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr ""
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr " ISDN ;"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6532,7 +6606,7 @@ msgstr ""
" ISDN , . "
" PCI ."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr " ISDN. ."
@@ -6584,7 +6658,7 @@ msgstr " DNS ()"
msgid "Second DNS Server (optional)"
msgstr " DNS ()"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6592,7 +6666,7 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6600,11 +6674,11 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr " ."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6612,32 +6686,32 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr " ."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr ""
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr ""
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr " %s ."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6656,12 +6730,12 @@ msgstr ""
"\n"
" OK "
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6672,7 +6746,7 @@ msgstr ""
" Ok , "
" .\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6685,72 +6759,72 @@ msgstr ""
" , "
".\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr " "
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr " "
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr " "
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr " ..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr " ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr " ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr " "
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr " LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr " () ethernet"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr " "
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6760,23 +6834,23 @@ msgstr ""
" .\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr " ;"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr " "
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6787,7 +6861,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6797,7 +6871,7 @@ msgstr ""
" .\n"
"\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6805,7 +6879,7 @@ msgstr ""
" , "
" hostname."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -6815,7 +6889,7 @@ msgstr ""
" net_monitor mcc. "
", ."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6827,7 +6901,7 @@ msgstr ""
" OK .\n"
" ."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6837,42 +6911,42 @@ msgstr ""
" IP \n"
" (: 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr " %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " ( %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr " IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr " "
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr " IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr " "
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr " IP 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6884,43 +6958,53 @@ msgstr ""
" .. ``mybox.mylab.myco.com''.\n"
" IP "
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr " DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr " (.. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr " "
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr " IP 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr " IP 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr " proxies"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
" ( )"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr " proxy http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr " proxy ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr " URL 'http:' 'ftp:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8410,7 +8494,7 @@ msgstr " \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8957,10 +9041,6 @@ msgstr ""
" ftp proxy\n"
" ftp proxy"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr " URL 'http:' 'ftp:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9010,6 +9090,43 @@ msgstr " mkraid ( raidtools;)"
msgid "Not enough partitions for RAID level %d\n"
msgstr " RAID %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr " "
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr " "
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr " ( )"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ()"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr " "
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr " , ..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr " ALSA (Advanced Linux Sound Architecture) "
@@ -9327,7 +9444,7 @@ msgstr ""
msgid "File sharing"
msgstr " "
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr ""
@@ -9417,7 +9534,7 @@ msgstr " "
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9462,7 +9579,7 @@ msgstr " "
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9487,7 +9604,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9503,7 +9620,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9518,7 +9635,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9567,8 +9684,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9604,11 +9721,11 @@ msgstr ""
msgid "Installing packages..."
msgstr " ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr " Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr " %s "
@@ -9649,16 +9766,6 @@ msgstr "/ "
msgid "Add/Del Clients"
msgstr "/ "
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr ""
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr " "
@@ -9707,48 +9814,64 @@ msgstr " -->"
msgid "<-- Del User"
msgstr "<-- "
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr " Net Boot"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr " -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- "
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr " dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr " "
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr " :"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr " !"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr " "
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr " !"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr " Etherboot ISO %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr " ! mkisofs ;"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr " /etc/dhcpd.conf!"
@@ -9879,12 +10002,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr " "
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9893,41 +10016,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr " :"
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr " "
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr " %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9945,64 +10068,64 @@ msgstr ""
"\n"
" ."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr " WebDAV !"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr " WebDAV !"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr " CDR/DVDR !"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr " ."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr " CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr " ..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr " "
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr " ..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr " ..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr " ..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr " !"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10010,14 +10133,14 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10027,39 +10150,39 @@ msgstr ""
" FTP . "
" FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " . \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr " !"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr " "
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
" ''"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10067,26 +10190,26 @@ msgstr ""
"\n"
" .\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
" "
" /etc\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr " ( /etc )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10094,50 +10217,50 @@ msgstr ""
" \n"
" /etc."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr ""
" "
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr " "
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -10145,76 +10268,78 @@ msgstr ""
" \n"
""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr " IP"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr " "
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr " "
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr " "
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr " CD/DVDROM "
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr " CD/DVD "
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr " CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr " "
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr " DVDR"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr " DVDRAM"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10222,33 +10347,33 @@ msgstr ""
" CD\n"
".. : 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr " CD"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
" "
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr ""
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10256,55 +10381,55 @@ msgstr ""
" \n"
" Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr " : "
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr " / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr ""
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr " "
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10313,7 +10438,7 @@ msgstr ""
" \n"
" "
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10322,79 +10447,79 @@ msgstr ""
" \n"
""
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
" :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr ""
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr ""
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr " "
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr " Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr " "
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr " "
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr " CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr " "
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr " "
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -10402,7 +10527,7 @@ msgstr ""
"\n"
"- :\n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -10410,7 +10535,7 @@ msgstr ""
"\n"
"- :\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -10418,7 +10543,7 @@ msgstr ""
"\n"
"- :\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -10426,7 +10551,7 @@ msgstr ""
"\n"
"- :\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -10435,13 +10560,13 @@ msgstr ""
"\n"
"- : %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -10449,39 +10574,39 @@ msgstr ""
"\n"
"- CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr " : %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10490,7 +10615,7 @@ msgstr ""
"\t\t : %s\n"
"\t\t : %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -10498,19 +10623,19 @@ msgstr ""
"\n"
"- :\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\t \n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\t tar bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\t tar gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -10519,39 +10644,39 @@ msgstr ""
"\n"
"- (%s) :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t- .\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t- FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t- SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -10559,7 +10684,7 @@ msgstr ""
" :\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10567,106 +10692,106 @@ msgstr ""
" :\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr " ."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr " "
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr " ."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr " :"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr " : "
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr " FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr " "
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr " ."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr " "
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr " "
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr " "
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr " "
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr " "
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr " ( /)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr " ."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
@@ -10674,7 +10799,7 @@ msgstr ""
" \n"
""
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
@@ -10682,131 +10807,131 @@ msgstr ""
"\n"
" "
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr " %s."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
msgstr " CD"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
msgstr ""
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
msgstr " "
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr " "
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
msgstr " "
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
msgstr " "
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr " "
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
msgstr " ..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr " "
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr " CD - "
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
msgstr " "
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr " "
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr ""
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr ""
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -10816,7 +10941,7 @@ msgstr ""
" \n"
" sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -10824,7 +10949,7 @@ msgstr ""
" :\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10832,19 +10957,19 @@ msgstr ""
" FTP.\n"
" FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr " ..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr " ..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr " "
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10852,59 +10977,59 @@ msgstr ""
" \n"
" ."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr " ... ."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr " "
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr " "
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr " "
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr " "
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr " FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr " ..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr " "
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr " "
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr " "
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr " "
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr " "
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10936,7 +11061,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10945,7 +11070,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10986,7 +11111,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11014,20 +11139,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11044,7 +11169,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11084,7 +11209,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11095,7 +11220,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11108,7 +11233,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11222,8 +11347,8 @@ msgid "Synchronization tool"
msgstr " "
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr ""
@@ -11288,26 +11413,26 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr ""
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr ""
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr " Bugzilla ..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr " ! "
@@ -11408,10 +11533,6 @@ msgstr "..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr " ... "
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr ""
@@ -11533,7 +11654,7 @@ msgstr " "
msgid "Size"
msgstr ""
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11598,12 +11719,12 @@ msgstr ""
msgid "Build the disk"
msgstr " "
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr " %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11612,12 +11733,12 @@ msgstr ""
" %s.\n"
" ."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr " fork: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12104,159 +12225,159 @@ msgstr ""
"\n"
" ."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr " :"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr " %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr ""
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr ""
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr ""
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr " "
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr " "
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr " "
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr ""
" \n"
""
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr " "
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr ": %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr ""
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr " "
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr " "
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr " Splash"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr ""
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr " :"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
msgstr " !"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12268,123 +12389,138 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr " ImageMagick "
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
msgstr " "
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
msgstr " "
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
msgstr " "
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
msgid "Theme name"
msgstr " "
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr " bootsplash 2"
-
-#: ../../standalone/draksplash_.c:82
-msgid "go to lilosplash configuration"
-msgstr " lilosplash"
-
-#: ../../standalone/draksplash_.c:83
-msgid "quit"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:84
-msgid "save theme"
-msgstr " "
+#: ../../standalone/draksplash_.c:85
+#, fuzzy
+msgid "Browse"
+msgstr ""
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
msgstr " bootsplash"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
msgid "text width"
msgstr " "
-#: ../../standalone/draksplash_.c:102
+#: ../../standalone/draksplash_.c:103
msgid "text box height"
msgstr " "
-#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr ""
-
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
msgid "the width of the progress bar"
msgstr " "
-#: ../../standalone/draksplash_.c:106
+#: ../../standalone/draksplash_.c:107
msgid "the heigth of the progress bar"
msgstr " "
-#: ../../standalone/draksplash_.c:107
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr " "
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:120
-msgid "preview"
+#: ../../standalone/draksplash_.c:121
+msgid "Preview"
msgstr ""
-#: ../../standalone/draksplash_.c:121
-msgid "choose color"
-msgstr " "
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr " "
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr " "
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr " "
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr " bootsplash %s !"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr " Bootsplash ..."
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr " "
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr " !"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr " ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr " Bootsplash"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12538,6 +12674,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ": keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ": keyboarddrake [--expert] [keyboard]\n"
@@ -12566,11 +12709,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr " live upgrade!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr " , "
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12844,16 +12987,13 @@ msgstr ""
" ``XSane'' /"
" ."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12928,7 +13068,7 @@ msgstr " "
msgid "Exit install"
msgstr ""
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13175,8 +13315,26 @@ msgstr " - CD"
msgid "Scientific Workstation"
msgstr " "
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr " Bootsplash"
+#~ msgid "Make bootsplash step 2"
+#~ msgstr " bootsplash 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr " lilosplash"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ " OSS/ALSA "
+#~ "(%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr " proxy ftp://..."
+
+#~ msgid "quit"
+#~ msgstr ""
#~ msgid ""
#~ "The \"%s\" driver for your sound card is unlisted\n"
@@ -13646,9 +13804,6 @@ msgstr " "
#~ " CD "
#~ " . "
-#~ msgid "Setting security level"
-#~ msgstr " "
-
#~ msgid "Setting security user"
#~ msgstr " "
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 2a66ed081..9093f3c98 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-08-22 19:15-0500\n"
"Last-Translator: D. Dale Gulledge <dsplat@rochester.rr.com>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -87,24 +87,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "ISDN-a Konfiguraon"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s kun 3D aparata akcelado"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -113,17 +113,17 @@ msgstr ""
"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vi povas havi 3D aparatan akceladan subtenon kun XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -135,7 +135,7 @@ msgstr ""
"KOMPUTILON.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -144,12 +144,12 @@ msgstr ""
"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
"NOTU KE I TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Akomodata"
@@ -170,32 +170,32 @@ msgstr "Distingivo"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcioj"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Jeso"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "esu"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -292,25 +292,25 @@ msgstr "Elektu distingivon kaj kolorprofundon"
msgid "Graphics card: %s"
msgstr "Grafika karto: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Nuligu"
@@ -387,11 +387,11 @@ msgstr "XFree86 servilo: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 pelilo: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X Fenestro e komenco"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -400,7 +400,7 @@ msgstr ""
"Mi povas konfiguri vian komputilon tiel ke i atomate lanos X kiam i\n"
"ekfunkcias. u vi deziras ke X atomate lanos?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,7 +412,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Kia estas via ISDN-a konektao?"
@@ -485,7 +485,7 @@ msgstr "Kompakta"
msgid "compact"
msgstr "kompakta"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Grafika reimo"
@@ -493,17 +493,17 @@ msgstr "Grafika reimo"
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo anta starti defaltan sistemon"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasvorto"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Pasvorto (denove)"
@@ -537,14 +537,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
@@ -581,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -589,156 +589,156 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli a ani la ekzistantajn."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Aldonu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Finata"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "anu"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linukso"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Alia Mastruma Sistemo (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Alia Mastruma Sistemo (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Kerna bildo"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Radiko"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Alfiksu"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lega-skriba"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabelo"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Danera"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etikedo"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Defalta"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-grandeco"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Forigu enskribon"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Malplena etikedo ne estas permesata"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Vi devas havi interanan subdiskon"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "i tiu etikedo estas jam uzata"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovis %s %s interfacojn"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "u vi havas alian?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "u vi havas iun %s interfacon?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Jes"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Vidu hardvaran informon"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalas pelilon por %s karto %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -749,17 +749,17 @@ msgstr ""
"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
"Ekzemple, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modulaj opcioj:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kiun %s pelilon devus mi provi?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -776,15 +776,15 @@ msgstr ""
"por la informo i bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
"i ne devus kazi difekton."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Atomate esploru"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Specifu opciojn"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -793,62 +793,62 @@ msgstr ""
"argado de modulo %s malsukcesis.\n"
"u vi deziras trovi denove kun aliaj parametroj?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "i tiu pasvorto estas tro simpla"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "i tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "i tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Aldonu uzanto"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -857,32 +857,32 @@ msgstr ""
"Enigu uzanton\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Akceptu uzanto"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Vera nomo"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Salutnomo"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "elo"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Piktogramo"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Atomata-enregistrado"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -891,20 +891,20 @@ msgstr ""
"Mi povas konfiguri vian komputilon por atomate enregistri unu uzulon kiam\n"
"i startas. Se vi ne deziras uzi i tion, alklaku la `Nuligu' butonon."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Elektu la defaltan uzulon:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lani:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -912,39 +912,39 @@ msgid ""
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malanta la instalado"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "iuj"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Aldonu uzulon"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS startas"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"i tiu pakao devus esti promociata.\n"
"u vi certas ke vi deziras malelekti in?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -953,42 +953,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Bonvenon Al Rompistoj"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Malbona"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Lanorma"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Alta"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoja"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -998,7 +998,7 @@ msgstr ""
"por uzi, sed delikatega: vi devus neniam uzi i surrete.\n"
"i ne havas pasvortojn."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1006,7 +1006,7 @@ msgstr ""
"Pasvortoj nun estas ebligataj, sed uzado kiel reta komputilo estas ankora\n"
"ne rekomendita."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1015,13 +1015,13 @@ msgstr ""
"i tiu estas la normala sekureco rekomendata por komputilo kiu estos uzata\n"
"por konekti al la Interreto kiel kliento. Nun estas sekurecaj kontroloj."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1035,7 +1035,7 @@ msgstr ""
"La sekureco nun estas sufie alta por uzi la sistemon kiel servilo kiu\n"
"akceptas konektojn de multaj klientoj."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1044,36 +1044,36 @@ msgstr ""
"Ni uzas aspektojn de la kvara nivelo, sed nun la komputilo estas tute\n"
"malfermita. Sekurecaj aspektoj estas e iliaj maksimumoj."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcioj"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Elektu sekurnivelon?"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Elektas sekurnivelon"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Elektu opciojn por servilo"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1081,7 +1081,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1098,20 +1098,20 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bonvenon al GRUB la elektilo por mastrumaj sistemoj!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Uzu la %c kaj %c klavoj por elekti kiun enskribon estas emfazata."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Premu la enenklavon por starti la elektatan mastruman sistemon, 'e' por\n"
@@ -1119,39 +1119,39 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordonoj antaux startado, aux 'c' por uzi komandan linion."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La emfazata enskribo startos auxtomate post %d sekundoj."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "mankas sufie da spaco en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kie vi deziras instali la startargilon?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1204,128 +1204,128 @@ msgstr "Lilo/grub modalo"
msgid "Yaboot mode"
msgstr "Yaboot modalo"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Instalu sistemon"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Kreu novan subdiskon"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Eraro"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "agrabla(j)"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Elektu instalklason"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfiguru"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Elektado de individuaj pakaoj"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1334,44 +1334,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistema modalo"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Jes"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1478,54 +1478,62 @@ msgstr "seria"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "nova"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Malmuntu"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Muntu"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Servilo"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Surmetingo"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Bonvole, provu la muson"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Prokura servilo devus esti http://..."
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Servilo"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Surmetingo: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcioj: %s"
@@ -1615,7 +1623,7 @@ msgstr "Malplena"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Alia"
@@ -1769,7 +1777,7 @@ msgstr ""
"La rezerva subdisktabelo ne estas la sama grandeco\n"
"u daras tamen?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Averto"
@@ -2331,7 +2339,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Salutnomo"
@@ -2346,23 +2354,23 @@ msgstr "NIS Domajno"
msgid "Search servers"
msgstr "DNA servilo"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatado de %s malsukcesis"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne scias kiel formati %s kiel speco %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "eraro dum malmunti %s: %s"
@@ -2448,46 +2456,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Eraro dum malfermado de %s por skribi: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "LAN Konfigurao"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Pelilo"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Helpo"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Provu konfiguraon"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Bonvole atendu"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2614,7 +2687,8 @@ msgid "/_Quit"
msgstr "esu"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Helpo"
@@ -2634,76 +2708,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Raportu Cimo"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Helpo/_Pri..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Atomate esploru"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detektado de fiksdisko(j)"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Vidu hardvaran informon"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Montru informon"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Konfiguru muson"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Duobla surmetingo %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Bonvole atendu"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundoj"
@@ -3797,7 +3872,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3812,7 +3887,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3821,31 +3896,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Enovu disketon en drajvo %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Eraro legante dosiero %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4096,7 +4171,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Bonvenon al %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Neniu disketilo havebla"
@@ -4127,11 +4202,11 @@ msgstr "Instalklaso"
msgid "Please choose one of the following classes of installation:"
msgstr "Bonvole, elektu unu el la sekvantaj specoj de instalado:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Elektado de Pakaaj Grupoj"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Elektado de individuaj pakaoj"
@@ -4209,7 +4284,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalu"
@@ -4231,7 +4306,7 @@ msgstr "Eliru instalprogramon"
msgid "Choose the packages you want to install"
msgstr "Elektu la pakaojn kiuj vi deziras instali"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instalanta"
@@ -4259,17 +4334,17 @@ msgid "Installing package %s"
msgstr "Instalanta pakao %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Akceptu"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Malakceptu"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4286,16 +4361,16 @@ msgstr ""
"Se vi ne havas in, klaku \"Nuligu\" por eviti la instaladon de i tiu KDROM."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "u vi deziras dari tamen?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Estis eraro ordigi pakaojn:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Estis eraro dum instalado de pakaoj:"
@@ -4392,7 +4467,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4470,7 +4545,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klavaro"
@@ -4678,29 +4753,29 @@ msgstr "Enovu disketon en drajvo %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4711,16 +4786,16 @@ msgstr ""
"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku \"Jes"
"\"."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "KDROM etikedata \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Preparas instaladon"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4729,21 +4804,21 @@ msgstr ""
"Instalas pakao %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Post-instala konfigurado"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Enovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Enovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4810,7 +4885,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4822,159 +4897,159 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaoj"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Elektu spegulon de kiu havigi la pakaojn"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaoj"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "u via hardvara horloo estas ustigata en GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP Servilo"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Neniu printilo"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "u vi havas alian?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Muso"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printilo"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN-karto"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Sonkarto"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokaj dosieroj"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Difinu pasvorton de root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Neniu pasvorto"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"i tiu pasvorto ests tro simpla (i devas esti almena %d signoj longa)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Atentikigado"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Atentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Servilo"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Atentikiga NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Servilo"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4990,21 +5065,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Atentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domajna nomo"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5032,19 +5107,19 @@ msgstr ""
"Se vi deziras krei startdisketon por via sistemo, enovu disketon en la\n"
"unua drajvo kaj klaku \"JES\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Unua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Dua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ellasu"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5068,7 +5143,7 @@ msgstr ""
"sistemaj paneoj. u vi deziras krei startdisketo por via sistemo?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5077,28 +5152,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Bedarinde, neniu disketdrajvo havebla"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elektu la disketdrajvo vi deziras uzi por krei la startdisketon"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Enovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Kreas startdisketon"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Preparas startargilon"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5106,11 +5181,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "u vi deziras uzi aboot-on?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5118,16 +5193,16 @@ msgstr ""
"Eraro dare mi instalis \"aboot\",\n"
"u mi devus provi perforte instali e se tio detruas la unuan subdiskon?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalu restart-argilon"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalado de startargilo malsukcesis. La sekvanta eraro okazis:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5138,24 +5213,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Enovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Kreas atoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5174,15 +5249,15 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Kreu atoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5191,15 +5266,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Atomata"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Reludu"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
#, fuzzy
msgid "Save packages selection"
msgstr "Elektado de individuaj pakaoj"
@@ -5236,14 +5311,14 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Antaa"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Sekvanta ->"
@@ -5695,7 +5770,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Cirklaj surmetingoj %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5834,16 +5909,16 @@ msgstr "neniu"
msgid "No mouse"
msgstr "Neniu Muso"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
#, fuzzy
msgid "To activate the mouse,"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MOVU VIAN RADON!"
@@ -5879,11 +5954,11 @@ msgstr "Maletendu Arbon"
msgid "Toggle between flat and group sorted"
msgstr "anu inter ebena kaj ordigita je grupoj"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konektu al la Interreto"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
#, fuzzy
msgid ""
"The most common way to connect with adsl is pppoe.\n"
@@ -5894,23 +5969,19 @@ msgstr ""
"Tamen, ekzistas konektojn kiuj nur uzas dhcp.\n"
"Se vi ne scias, elektu 'uzu pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "uzu dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "uzu pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "uzu pptp"
@@ -6007,7 +6078,7 @@ msgstr ""
msgid "no network card found"
msgstr "neniu retkarto trovita"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Konfiguras reto"
@@ -6023,15 +6094,15 @@ msgstr ""
"Via potejo devus esti plene specifita potejo,\n"
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Potejo"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "ISDN-a Konfiguraon"
@@ -6073,8 +6144,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Konfigurao de barilo detektata!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN-a Konfiguraon"
@@ -6114,23 +6185,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Kiun protokolon vi deziras uzi?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Kiun specon de karto vi havas?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Mi ne scias"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6145,19 +6221,19 @@ msgstr ""
"Se vi havas PCMCIA-an karton, vi bezonas scii la IRQ-o kaj I/O (Eneligo)\n"
"por via karto.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "esigu"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "u mi devus dari?"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Kiu estas via ISDN-a karto?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6166,7 +6242,7 @@ msgstr ""
"elektu\n"
"unu el la PCI-aj kartojn sur la sekvanta ekrano."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Neniu ISDN-a PCI-a karto trovata. Bonvole elektu unu el la PCI-aj kartojn "
@@ -6221,59 +6297,59 @@ msgstr "Unu DNS-a Servilo (nedeviga)"
msgid "Second DNS Server (optional)"
msgstr "Du DNS-a Servilo (nedeviga)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konektu"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Malkonektu"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Konfiguru retumon"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Interreta konektao kaj konfiguro"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6285,12 +6361,12 @@ msgid ""
"Press OK to continue."
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Reta Konfigurao"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6298,7 +6374,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6306,103 +6382,103 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Elektu la defaltan uzulon:"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Spertuloreimo"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detektas aparatojn..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy
msgid "Normal modem connection"
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Duobla surmetingo %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, fuzzy
msgid "ISDN connection"
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "LAN Konfigurao"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Reta interfaco"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "Cable connection"
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN Konfigurao"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Elektu la ilon kiun vi deziras instali"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Disdividado de Interreta Konekto"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "u vi deziras starti vian konektaon je startado de la sistemo?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Reta Konfigurao"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6410,27 +6486,27 @@ msgid ""
"%s"
msgstr "u vi deziras provi la konfiguraon?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
#, fuzzy
msgid ""
"WARNING: this device has been previously configured to connect to the "
@@ -6443,7 +6519,7 @@ msgstr ""
"Simple klaki JES por teni la konfiguron de i tiu aparato.\n"
"Se vi modifos la subajn kampojn, vi anos i tiun konfiguron."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6453,43 +6529,43 @@ msgstr ""
"iu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
"(ekzemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfiguras retan aparaton %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "XFree86 pelilo: %s\n"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-adreso"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Retmasko"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Atomata IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Kreu praargdisketon"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6501,42 +6577,53 @@ msgstr ""
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
"Vi anka povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNA servilo"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Prokura kluzaparato"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Konfigurado de prokuraj serviloj"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP prokura servilo"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP prokura servilo"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Prokura servilo devus esti http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Prokura servilo devus esti ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Prokura servilo devus esti http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7934,7 +8021,7 @@ msgstr "Haltas de la reto"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8443,11 +8530,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Prokura servilo devus esti http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8495,6 +8577,43 @@ msgstr "mkraid malsukcesis (eble raidtools mankas)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ne estas sufiaj subdiskoj por RAID nivelo %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Elektas sekurnivelon"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Elektas sekurnivelon"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Malproksimaj lpd Printilaj Opcioj"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Defalta)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Elektas sekurnivelon"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Preparas instaladon"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8790,7 +8909,7 @@ msgstr "Interreto"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Sistema modalo"
@@ -8887,7 +9006,7 @@ msgstr "Konektu al la Interreto"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -8934,7 +9053,7 @@ msgstr "Reta interfaco"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8959,7 +9078,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -8975,7 +9094,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8990,7 +9109,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9039,8 +9158,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9077,12 +9196,12 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalanta pakao %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
"Bonvole adiau kaj sekve uzu Kontrol-Alt-Retropao (Ctrl-Alt-Backspace)."
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Bonvolu resaluti en %s-n por aktivigi la anojn."
@@ -9129,17 +9248,6 @@ msgstr "Aldonu uzanto"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Helpo"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9192,52 +9300,67 @@ msgstr "Aldonu uzanto"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Mi konfiguras..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "LAN Konfigurao"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "rekonfiguru"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Enovu disketon en drajvo %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Neniu disketilo havebla"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9361,13 +9484,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Provu pordojn"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9376,41 +9499,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Neniu pasvorto"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Ne povis malfermi %s por skribi: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9421,68 +9544,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9490,923 +9613,925 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Eraro legante dosiero %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Elektado de Pakaoj"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Forigu Vindozon"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Neniu pasvorto"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Bonvole, elektu vian klavaran aranon."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Elektu dosieron"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Reta interfaco"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Modulaj opcioj:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Reta Konfigurao"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Musaparato: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcioj"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Reta Konfigurao"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN Konfigurao"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Elektu Printilan Konekton"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaru de disketo"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Alia"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Instalu sistemon"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Restaru de dosiero"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Restaru de dosiero"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Restaru de dosiero"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Restaru de disketo"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Sava subdiskotabelo"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Restaru de dosiero"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Potejo"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Pasvorto"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Potejo: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Restaru de dosiero"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Akomodata"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Sava subdiskotabelo"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Restaru de dosiero"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Antaa"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Stato:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Restaru de dosiero"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "La sekvaj pakaoj estos instalataj"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Konservu en dosiero"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Reta Konfigurao"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Reta Konfigurao"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN Konfigurao"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN Konfigurao"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10438,7 +10563,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10447,7 +10572,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10488,7 +10613,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10516,17 +10641,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10543,7 +10668,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10583,7 +10708,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10594,7 +10719,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10607,7 +10732,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10689,8 +10814,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr ""
@@ -10765,28 +10890,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "porto"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Eliru instalprogramon"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr ""
@@ -10893,11 +11018,6 @@ msgstr "Soristo..."
msgid "Apply"
msgstr "Apliku"
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Provu konfiguraon"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Konektita"
@@ -11015,7 +11135,7 @@ msgstr "Modulonomo"
msgid "Size"
msgstr "Grandeco"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11080,12 +11200,12 @@ msgstr "Skribu"
msgid "Build the disk"
msgstr "Konstruu la diskon"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Kontrolu ke medio estas en la aparato %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11094,12 +11214,12 @@ msgstr ""
"Ne estas medio en aparato %s.\n"
"Bonvole enovu in."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne povis forki: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11580,155 +11700,155 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Laborgrupo"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "subdisko: %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Salutnomo"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Forigu"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Finata"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Aldonu modulon"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Neniu printilo"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Akceptu uzanto"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versio: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Pordo"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Elektado de individuaj pakaoj"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Salutnomo"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Laborgrupo"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Ne konektita"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11740,137 +11860,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Startdiskokreado"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Distingivo"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Elektu agon"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Opuza nomo"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Post-instala konfigurado"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "esu"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Instalu sistemon"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Konfiguru servojn"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Retrokonektado"
+msgid "Preview"
+msgstr "aparato"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "aparato"
+msgid "Save theme"
+msgstr "Instalu sistemon"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Elektu ekranon"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Printilan Konekton"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Printila Aparato URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Detektas aparatojn..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12011,6 +12141,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "uzado: keyboarddrake [--expert] [klavaro]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uzado: keyboarddrake [--expert] [klavaro]\n"
@@ -12044,11 +12181,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12329,16 +12466,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12414,7 +12548,7 @@ msgstr "Instalu sistemon"
msgid "Exit install"
msgstr "Eliru instalprogramon"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12666,6 +12800,21 @@ msgstr "Plurmedia - KD-ROM Kreado"
msgid "Scientific Workstation"
msgstr "Laborstacio"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Post-instala konfigurado"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Retrokonektado"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Prokura servilo devus esti ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "esu"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (ne funkcias kun malnovaj BIOSoj)"
@@ -12759,9 +12908,6 @@ msgstr "Laborstacio"
#~ msgid "Test again"
#~ msgstr "Provu denove"
-#~ msgid "Setting security level"
-#~ msgstr "Elektas sekurnivelon"
-
#~ msgid "Select a graphics card"
#~ msgstr "Elektu grafikan karton"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index c63c16b3f..fdd814e16 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 1999-10-28 19:54+0200\n"
"Last-Translator: Riho Kurg <rx@linux.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -90,24 +90,24 @@ msgstr "Seadista kik monitorid sltumatult"
msgid "Use Xinerama extension"
msgstr "Kasuta Xinerama laiendusi"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Seadista ainult kaart \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree86 %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s koos 3D graafikakiirendi toega"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -116,17 +116,17 @@ msgstr ""
"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
"XFree %s toetab Teie videokaarti ja vib omada paremat 2D tuge."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Teie kaardi 3D graafikakiirendit toetab XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s koos EKSPERIMENTAALSE 3D kiirendi toega"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -137,7 +137,7 @@ msgstr ""
"SEE ON AGA EKSPERIMENTAALNE JA VIB OLLA EBASTABIILNE.\n"
"Teie kaarti toetab ka XFree %s, millel on ehk parem 2D tugi."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -146,12 +146,12 @@ msgstr ""
"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
"SEE ON AGA EKSPERIMENTAALNE JA VIB OLLA EBASTABIILNE."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Isetehtud"
@@ -172,32 +172,32 @@ msgstr "Kuvatihedus"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Eelistused"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Vlju"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -292,25 +292,25 @@ msgstr "Valige kuvatihedus ja vrvisgavus"
msgid "Graphics card: %s"
msgstr "Graafikakaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Katkesta"
@@ -387,11 +387,11 @@ msgstr "XFree86 server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 juhtprogramm: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X stardib nd"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -400,7 +400,7 @@ msgstr ""
"Teie arvutis on vimalik kivitada X juba alglaadimisel.\n"
"Kas soovite nii teha?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,7 +412,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Millist ISDN hendust kasutate?"
@@ -485,7 +485,7 @@ msgstr "Kompaktne"
msgid "compact"
msgstr "kompaktne"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Graafikamood"
@@ -493,17 +493,17 @@ msgstr "Graafikamood"
msgid "Delay before booting default image"
msgstr "Ooteaeg alglaadimisel"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Salasna"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Salasna (uuesti)"
@@ -537,14 +537,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Ste ``Piira ksurea suvandeid'' on ilma salasnata mittekasutatav"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Palun proovige veel"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Salasnad ei klapi"
@@ -581,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -589,157 +589,157 @@ msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te vite neid lisada ning olemasolevaid muuta."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Lisa"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Tehtud"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
#, fuzzy
msgid "Modify"
msgstr "Modifitseeri RAIDi"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Millisele sektorile soovite seda tsta?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Muu OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Muu OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Muu OS (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Laadefail"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Juur"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Lisada"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Ebaturvaline"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "This"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Vaikimisi"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd suurus"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Eemalda kirje"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Thi kirjethis ei ole lubatud"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Teil peab olema saaleala"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Selline this on juba kasutusel"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Leiti %s %s liidest"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "On Teil veel kaarte?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Kas Teil on ikka mni %s liides?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Jah"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Info riistvara kohta"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installime juhtprogrammil %s kaardile %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(moodul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -750,17 +750,17 @@ msgstr ""
"Parameetrid on vormingus \"nimi=vrtus nimi2=vrtus2 ...\".\n"
"Niteks: \"io=0x300 irq=7\""
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Mooduli parameetrid:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Millist %s juhtprogrammi peaksime proovima?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -776,15 +776,15 @@ msgstr ""
"mratleda vi lasta juhtprogrammil ise Teie arvutit kompida? Vib juhtuda,\n"
"et see viib arvuti segadusse kuid ei tohiks mingit jvat kahju teha."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Proovida niisama"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Mrake parameetrid"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -793,62 +793,62 @@ msgstr ""
"Moodule %s laadimine ei nnestunud.\n"
"Kas soovite proovida parameetreid muuta?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Salasna on liiga lihtne"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Palun andke kasutajatunnus"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Kasutajatunnus tohib sisaldada ainult vikesi thti, numbreid, - ja _"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Lisa kasutaja"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -857,32 +857,32 @@ msgstr ""
"Sisesta kasutaja\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Kasutaja ige"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Prisnimi"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Kasutajatunnus"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Ksurida"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Vaikimisi sisenemine"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -891,57 +891,57 @@ msgstr ""
"Teie arvutit saab seada vaikimisi kasutaja sisenemisele.\n"
"Kui Te seda ei soovi, valige <Katkesta>"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Valige uus vaikimisi kasutaja :"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Valige palun kivitatav aknahaldur:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Palun valige kasutatav keel"
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Teisi keeli saab valida prast installimist"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Kik"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Tavakasutaja"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS kivitatakse"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Valige paketid mida soovite installida"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -950,42 +950,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Tere tulemast, krkkerid"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Vhene"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Tavahiir"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Krge"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Krge"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoiline"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -995,14 +995,14 @@ msgstr ""
"haavatavaks: ligipsupiirangute puudumise tttu ei peaks arvutit hendama\n"
"ei teiste arvutitega ega ka mitte Internetti."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasnad on nd kasutusel, kuid vrku hendamine ei ole siiski soovitav."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1010,13 +1010,13 @@ msgid ""
msgstr ""
"See on sobilik turvatase arvutile, mis hendatakse Internetti kui klient."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1027,7 +1027,7 @@ msgid ""
"Internet, you should choose a lower level."
msgstr "Sellel turvatasemel vib ssteemi kasutada Internetis ka serverina."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1036,36 +1036,36 @@ msgstr ""
"Ssteem on tielikult suletud. Vrgust kasutamine on vimalik ainult\n"
"spetsiaalselt loodud juurdepsuteid kasutades."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Eelistused"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Valige turvatase"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Turvataseme seadmine"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Valige X server"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1078,7 +1078,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1103,58 +1103,58 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tere tulemast! Laadimisel aitab Teid GRUB!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Kasutage valiku tegemiseks %c ja %c klahve"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Enter laeb Teie valiku, 'e' laseb muuta"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "suvandeid enne laadimist ja 'c' veel enam."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Valik laetakse automaatselt %d sekundi jooksul"
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "/boot on liiga tis"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Tlaud"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Startmen"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kuhu soovite alglaaduri installida"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "selle kohta (veel) abi ei saa.\n"
@@ -1208,106 +1208,106 @@ msgstr "Valimisviis"
msgid "Yaboot mode"
msgstr "Alglaadimismood"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Ssteemi installimine"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Looge uus partitsioon"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Viga"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree86 %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "pintsaklips"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Valige paigaldusmeetod"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1319,23 +1319,23 @@ msgstr ""
"\n"
"Valige Abimehe kivitamiseks ``OK''"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Seadista"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Salvest paketivalik"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
#, fuzzy
msgid "Themes"
msgstr "Puu"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1344,45 +1344,45 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Tmood"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Kivita X-Windows alglaadimisel"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ei taha automaatselt siseneda"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Jah, soovin automaatset sisselogimist sellele (kasutajale, keskkonnale)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ei saa lugeda faili /etc/inittab: %s"
@@ -1486,53 +1486,61 @@ msgstr "seerial"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Uus"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "henda lahti"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "henda"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "henduspunkt"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Palun testige hiirt"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "henduspunkt:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Eelistused: %s"
@@ -1621,7 +1629,7 @@ msgstr "Thi"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Muu"
@@ -1772,7 +1780,7 @@ msgstr ""
"Tabeli tagavarakoopia ei ole sama suurusega\n"
"Soovite jtkata?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Hoiatus"
@@ -2333,7 +2341,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Kasutajatunnus"
@@ -2348,23 +2356,23 @@ msgstr "NIS domeen"
msgid "Search servers"
msgstr "Nimeserver"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s vormindamine seadmel %s ebannestus"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ei oska seadet %s vormindada tpi %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "viga %s lahti hendamisel: %s"
@@ -2450,46 +2458,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Seadme %s avamine kirjutamiseks ebannestus: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "LAN stted"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Juhtprogramm"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Abi"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Palun oodake... Rakendan seadistusi"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Palun oodake"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2616,7 +2688,8 @@ msgid "/_Quit"
msgstr "Vlju"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Abi"
@@ -2636,76 +2709,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Vearaport"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Abi/_Misvrk"
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Proovida niisama"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kvaketta leidmine"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Info riistvara kohta"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Nita lisainfot"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Hiire seadmine"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "leiti port %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Palun oodake"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundit"
@@ -4140,7 +4214,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4155,7 +4229,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4164,20 +4238,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "ldlevi kasutamine on ilma NIS domeenita vimatu"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Pane FAT formaadis flopi seadmesse %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "See flopi ei ole FAT formaadis"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4185,12 +4259,12 @@ msgstr ""
"Et kasutada seda paketivalikut, alustage installimist ksureaga \"linux "
"defcfg=floppy\""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Viga faili %s lugemisel"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4428,7 +4502,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "See ongi %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Flopiseade ei ole kttesaadav"
@@ -4458,11 +4532,11 @@ msgstr "Installi klass"
msgid "Please choose one of the following classes of installation:"
msgstr "Palun valige ks jrgnevatest paigaldusklassidest"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Valik paketthaaval"
@@ -4538,7 +4612,7 @@ msgstr "Nita automaatselt valitud pakette"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installimine"
@@ -4561,7 +4635,7 @@ msgstr "Eemaldamine"
msgid "Choose the packages you want to install"
msgstr "Valige paketid installimiseks"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Installin"
@@ -4588,17 +4662,17 @@ msgid "Installing package %s"
msgstr "Paketi %s installimine"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Nus"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Keeldun"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4613,16 +4687,16 @@ msgstr ""
"Kui teil sherdust ei ole, vajutage <Katkesta>"
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Ikkagi edasi?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Pakettide tellimisel tekkis viga:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Pakettide installimisel tekkis viga:"
@@ -4747,7 +4821,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4867,7 +4941,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4944,7 +5018,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatuur"
@@ -5154,31 +5228,31 @@ msgstr "Pane flopi seadmesse %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Valige pakett installimiseks"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Oodake"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5188,16 +5262,16 @@ msgstr ""
"Kui Teil ei ole htki neist, klikkige <Katkesta>.\n"
"Kui puuduvad mned CD-d, mrkige vaid olemasolevad ja siis <OK>."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD pealdisega \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Valmistun installimiseks"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5206,21 +5280,21 @@ msgstr ""
"Paketi %s installimine\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Paigaldusjrgsed stted"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Pange palun thi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5288,7 +5362,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5300,164 +5374,164 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Millises ajavtmes asute?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "CUPS printserver"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Printerit ei ole"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "On Teil veel kaarte?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Kokkuvte"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Hiir"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Ajavde"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kaart"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Helikaart"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kaart"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Kasuta NIS-i"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Gnome tjaam"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Kohalik printer"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Juurkasutaja salasna"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Salasna puudub"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Salasna on liiga lihtne (peaks olema vhemalt %d themrki)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS autentimine"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domeen"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5473,22 +5547,22 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeeninimi"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Domain Admin Password"
msgstr "Salasna uuesti"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5516,19 +5590,19 @@ msgstr ""
"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
"\"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Esimene flopiseade"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Teine flopiseade"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Jta vahele"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5552,7 +5626,7 @@ msgstr ""
"ka Jumal!\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5561,28 +5635,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Flopiseade ei ole kttesaadav"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vali flopiseade, mida kasutad alglaadimisketta tegemiseks"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Loome alglaadimisketta"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Alglaaduri stted"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5590,11 +5664,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5602,16 +5676,16 @@ msgstr ""
"Viga aboot-i installimisel, \n"
"kas forseerida, riskides esimese partitsiooni hvinguga?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Alglaaduri stted"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Alglaaduri installimine ebannestus. Tekkis jrgnev viga:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5628,17 +5702,17 @@ msgstr ""
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Pange palun thi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Loon kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5648,7 +5722,7 @@ msgstr ""
"\n"
"Olete kindel, et vljute programmist?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5680,15 +5754,15 @@ msgstr ""
"Abi ssteemi edasiseks konfigureerimiseks saab eelkige dokumendist\n"
"\"Official Mandrake Linux User's Guide\""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Loo kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5701,15 +5775,15 @@ msgstr ""
"\n"
"Vite valida ka lihtsalt installi kordamise.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automaatne"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Korda"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Salvest paketivalik"
@@ -5745,14 +5819,14 @@ msgstr "Edasijudnud"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Eelmine"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Tekst"
@@ -6208,7 +6282,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Ringhendus %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Eemalda enne kettarhmad (logical volumes)\n"
@@ -6346,15 +6420,15 @@ msgstr "ei soovi"
msgid "No mouse"
msgstr "Hiirt ei ole"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Palun testige hiirt"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Hiire aktiveerimiseks"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "KEERUTAGE RATTAKEST!"
@@ -6390,11 +6464,11 @@ msgstr "Sule puu"
msgid "Toggle between flat and group sorted"
msgstr "Sorteeritud vi sorteerimata"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Loo internetihendus"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6404,23 +6478,19 @@ msgstr ""
"Mnel juhul aga kasutatakse pptp-d, harva dhcp-d.\n"
"Kui Te ei tea, kasutage pppoe-d"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "pptp"
@@ -6524,7 +6594,7 @@ msgstr ""
msgid "no network card found"
msgstr "vrgukaarti ei leitud"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Vrguseadistused"
@@ -6540,15 +6610,15 @@ msgstr ""
"Masina nimi peab olema esitatud tiskujul,\n"
"nagu ``minumasin.minufirma.ee''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Masinanimi"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Vrgu stete abimees"
@@ -6590,8 +6660,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Leitud tulemri stted!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN stted"
@@ -6631,23 +6701,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Mis protokolli soovite kasutada?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Mis tpi kaart Teil on?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ei tea"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6661,19 +6736,19 @@ msgstr ""
"Kui Teil on PCMCIA kaart, peaksite Te ise teadma selle IRQ ning IO "
"vrtusi.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Katkesta"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Jtka"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Milline on Teie ISDN kaart?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6681,7 +6756,7 @@ msgstr ""
"Leidsin kll PCI ISDN kaardi, kui selle tp on tundmatu. Palun valige ks "
"PCI kaart jrgmisel sammul."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "PCI ISDN kaarti ei leitud. Palun valige ks jrgmisel sammul."
@@ -6733,7 +6808,7 @@ msgstr "Esimene nimeserver (soovituslik)"
msgid "Second DNS Server (optional)"
msgstr "Teine nimeserver (soovituslik)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6741,7 +6816,7 @@ msgstr ""
"\n"
"Saate henduse katkestada vi uuesti seadistada."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6749,11 +6824,11 @@ msgstr ""
"\n"
"Saate seadistada henduse uuesti."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Hetkel olete Internetiga hendatud."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6761,37 +6836,37 @@ msgstr ""
"\n"
"Saate henduda Internetti vi seadistada hendus uuesti."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Hetkel ei ole Te Internetti hendatud."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "hendatud"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "Lahuta..."
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Seadista TV-kaabli hendus"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetihenduse seadistamine"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Saate henduse katkestada vi uuesti seadistada."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6805,12 +6880,12 @@ msgstr ""
"\n"
"Saate henduse katkestada vi uuesti seadistada."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Vrgu stted"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6821,7 +6896,7 @@ msgstr ""
"Kui soovite neid seadistusi silitada, valige OK, muidu katkestage ja saate "
"seadistada uuesti.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6833,99 +6908,99 @@ msgstr ""
"Nd hakkame internetihendust seadistama.\n"
"Kui Te ei soovi automaatset tuvastamist siis jtke see mrkimata.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Valige profiil, mida seadistada"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Kasuta automaattuvastust"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ekspertresiim"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Otsin printerit..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Tavaline modemihendus"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "leiti port %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN hendus"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "tuvastati %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "LAN hendus"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "leiti liidesel %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kaablihendus"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Kaablihendus"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN hendus"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "vrgukaart(i) leiti les"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Valige kasutatav vahend"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Internetihenduse jagamine"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Kas soovite luua henduse juba alglaadimisel?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Vrgustted"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6933,7 +7008,7 @@ msgid ""
"%s"
msgstr "Kas soovite vrguhendust taaskivitada?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6943,7 +7018,7 @@ msgstr ""
"\n"
"Stted salvestatakse nd.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6951,14 +7026,14 @@ msgstr ""
"Soovitame taaskivitada ka X keskkonna, et vltida vimalikke\n"
"masinanime muutmisest tingitud probleeme."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6968,7 +7043,7 @@ msgstr ""
"HOIATUS: See seade on juba seadistatud Interneti jaoks.\n"
"Valige lihtsalt OK, et stteid mitte muuta."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6978,43 +7053,43 @@ msgstr ""
"Kik read tuleb sisestada IP-aadressi kujul\n"
"(Niteks 12.34.56.78)"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Seadistame vrgukaardi %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (juhtprogramm %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-aadress"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Vrgu mask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automaatne IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Kivitub laadimisel"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7026,42 +7101,53 @@ msgstr ""
"nagu ``minumasin.minufirma.ee''.\n"
"Kui Teil on vaikimisi ls, siis sisestage ka selle IP-aadress"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Nimeserver"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Lsipoolne seade"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-aadress peab olema formaadis 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-aadress peab olema formaadis 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Vahendajate stted"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP vahendaja"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP vahendaja"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Vahendaja peab olema kujul ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Vahendaja peab olema kujul http://..."
#
#: ../../network/shorewall.pm_.c:24
@@ -8461,7 +8547,7 @@ msgstr "Seiskame vrguliidesed"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8974,11 +9060,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Vahendaja peab olema kujul http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9028,6 +9109,43 @@ msgstr "mkraid ebannestus (puudub 'raidtools'?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei ole piisavalt partitsiooni RAID-%d jaoks\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Turvataseme seadmine"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Turvataseme seadmine"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Vrguprinteri stted"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ? (vaikimisi %s) "
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Turvataseme seadmine"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Palun oodake, valmistun installimiseks"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9306,7 +9424,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Tmood"
@@ -9402,7 +9520,7 @@ msgstr "Loo internetihendus"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9449,7 +9567,7 @@ msgstr "Vrguliides"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9474,7 +9592,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9490,7 +9608,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9505,7 +9623,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9554,8 +9672,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9592,12 +9710,12 @@ msgstr ""
msgid "Installing packages..."
msgstr "Paketi %s installimine"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Palun vljuge ja vajutage siis Ctrl-Alt-BackSpace"
# c-format
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Muudatuste aktiveerimiseks kivitage %s uuesti"
@@ -9646,17 +9764,6 @@ msgstr "Lisa kasutaja"
msgid "Add/Del Clients"
msgstr "DHCP klient"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Abi"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9709,53 +9816,68 @@ msgstr "Lisa kasutaja"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klient"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Seadista..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "ISDN stted"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "seadista uuesti"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Pane flopi seadmesse %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Flopiseade ei ole kttesaadav"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9879,13 +10001,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Proovin porte"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9894,41 +10016,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Salasna puudub"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Vrgukaart %s: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9939,68 +10061,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10008,926 +10130,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Viga faili %s lugemisel"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paketigruppide valik"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Eemalda prindijrjekord"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Eemalda Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Salasna puudub"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Palun valige klaviatuuriasetus"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Valige fail"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Vrgu mask:"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tp"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Oodake"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Mooduli parameetrid:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Vrgu stted"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
#, fuzzy
msgid "across Network"
msgstr "Vrgu mask:"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
#, fuzzy
msgid "on Tape Device"
msgstr "Printeri seade"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Failissteemid"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Hiire port: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Eelistused"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Millisesse seerialporti on Teie modem hendatud?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Vrgu stted"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Palun valige hiire tp"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN hendus"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Vali printeri hendusviis"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Taasta flopilt"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Palun valige hiire tp"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Muu"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Ssteemi installimine"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Palun valige hiire tp"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Eemalda prindijrjekord"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Taasta flopilt"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Psta partitsioonitabel"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Seadista kohtvrk uuesti"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Masinanimi"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Salasna"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Masinanimi: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Isetehtud"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Psta partitsioonitabel"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Eelmine"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Olek:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Installimiseks on valitud jrgmised paketid"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Salvesta faili"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Vrgu stted"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Vrgu stted"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN stted"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "ISDN stted"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Failissteemid"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10959,7 +11083,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10968,7 +11092,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11009,7 +11133,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11037,17 +11161,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11064,7 +11188,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11104,7 +11228,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11115,7 +11239,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11128,7 +11252,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11210,8 +11334,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsooliprogrammid"
@@ -11288,29 +11412,29 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Port"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Vlju programmist"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "connecting to Bugzilla wizard ..."
msgstr "Seadistan uuesti abimehega..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Teisi keeli saab valida prast installimist"
@@ -11411,10 +11535,6 @@ msgstr "Abimees..."
msgid "Apply"
msgstr "Rakenda"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Palun oodake... Rakendan seadistusi"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "hendatud"
@@ -11532,7 +11652,7 @@ msgstr "Mooduli parameetrid:"
msgid "Size"
msgstr "Suurus: %s"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
#, fuzzy
msgid "drakfloppy"
msgstr "Taasta flopilt"
@@ -11606,24 +11726,24 @@ msgstr ""
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Keela vrguhendus"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12106,158 +12226,158 @@ msgstr ""
"\n"
"Valige Abimehe kivitamiseks ``OK''"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Tgrupp"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "Partitsioon %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Kustuta"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
#, fuzzy
msgid "edit"
msgstr "Keskmine"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Tehtud"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Tavakasutaja"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Printerit ei ole"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Eemalda prindijrjekord"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Kasutaja ige"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versioon: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Kasuta automaattuvastust"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Kasuta automaattuvastust"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Salvest paketivalik"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Kasutajatunnus:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Tgrupp"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Ei ole hendatud"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12269,137 +12389,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Alglaadimise stiil"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Kuvatihedus"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Valige tegevus"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Jagatav printer"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Paigaldusjrgsed stted"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Vlju"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Ssteemi installimine"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Teenuste stted"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "loopback"
+msgid "Preview"
+msgstr "seade"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "seade"
+msgid "Save theme"
+msgstr "Ssteemi installimine"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Valige monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Printeri hendusviis"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Printeri seadme URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Otsin printerit..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12540,6 +12670,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "kasutamiseks: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "kasutamiseks: keyboarddrake [--expert] [keyboard]\n"
@@ -12568,11 +12705,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ei saa kiiruuendust alustada !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
#, fuzzy
msgid "logdrake"
msgstr "DrakNet"
@@ -12854,16 +12991,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12939,7 +13073,7 @@ msgstr "Ssteemi installimine"
msgid "Exit install"
msgstr "Vlju programmist"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -13185,6 +13319,21 @@ msgstr "Multimeedia - CD kirjutamine"
msgid "Scientific Workstation"
msgstr "Teadustjaam"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Paigaldusjrgsed stted"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Vahendaja peab olema kujul ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Vlju"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (ei tta vanema BIOSi korral)"
@@ -13425,9 +13574,6 @@ msgstr "Teadustjaam"
#~ msgid "Test again"
#~ msgstr "Proovi veel"
-#~ msgid "Setting security level"
-#~ msgstr "Turvataseme seadmine"
-
#~ msgid "Select a graphics card"
#~ msgstr "Valige graafikakaart"
@@ -13594,9 +13740,6 @@ msgstr "Teadustjaam"
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Mitmeselt mistetav (%s), palun tpsustage\n"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (vaikimisi %s) "
-
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Teie valik? (vaikimisi %s, `none' - ei midagi)"
@@ -16014,3 +16157,6 @@ msgstr "Teadustjaam"
#~ msgid "What usage do you want?"
#~ msgstr "Mis kasutusala soovite?"
+
+#~ msgid "/Help/_Report Bug"
+#~ msgstr "/Abi/_Vearaport"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 51635cf69..4382e1101 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
-"PO-Revision-Date: 2002-08-28 00:51+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
+"PO-Revision-Date: 2002-09-09 23:32+0200\n"
"Last-Translator: Iigo Salvador Azurmendi <xalba@euskalnet.net>\n"
"Language-Team: Euskara <linux-eu@chanae.alphanet.ch>\n"
"MIME-Version: 1.0\n"
@@ -91,24 +91,24 @@ msgstr "Buru guztiak independenteki konfiguratu"
msgid "Use Xinerama extension"
msgstr "Erabili Xinerama hedapena"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfiguratu \"%s\"%s txartela soilik"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s 3D hardware-azelerazioarekin"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -119,19 +119,19 @@ msgstr ""
"Zure txartelak XFree %s euskarria du, eta horrek euskarri hobea izan dezake "
"2Dan."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Zure txartelak 3D hardware-azelerazioaren euskarria izan dezake XFree %s(r)"
"ekin."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s 3D hardware-azelerazio ESPERIMENTALAREKIN"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,7 +144,7 @@ msgstr ""
"Zure txartelak XFree %s euskarria du, eta horrek euskarri hobea izan dezake "
"2Dan."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,12 +154,12 @@ msgstr ""
"ekin,\n"
"KONTUAN IZAN EUSKARRI ESPERIMENTALA DELA ETA ORDENAGAILUA BLOKEA DEZAKEELA."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalazioaren bistaratze-kontrolatzailea)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Pertsonalizatua"
@@ -179,32 +179,32 @@ msgstr "Bereizmena"
msgid "Test"
msgstr "Froga"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Aukerak"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ados"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Irten"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -301,25 +301,25 @@ msgstr "Aukeratu bereizmena eta kolorearen sakonera"
msgid "Graphics card: %s"
msgstr "Txartel grafikoa: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Utzi"
@@ -332,9 +332,8 @@ msgid "Do you want to test the configuration?"
msgstr "Konfigurazioa probatu nahi duzu?"
#: ../../Xconfig/test.pm_.c:31
-#, fuzzy
msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Kontuz: txartel grafiko hau probatzean ordenagailua blokea daiteke"
+msgstr "Adi: txartel grafiko hau frobatzeak zure konputagailua blokeatu dezake"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -396,11 +395,11 @@ msgstr "XFree86 zerbitzaria: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 kontrolatzailea: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X abioan"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -409,7 +408,7 @@ msgstr ""
"Ordenagailua abiatzean X automatikoki abiarazteko konfigura dezaket.\n"
"Berrabiaraztean X hastea nahi duzu?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -429,7 +428,7 @@ msgstr ""
"\n"
"Ezaugarri hau badaukazu?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Zein arau erabiltzen du zure TB?"
@@ -501,7 +500,7 @@ msgstr "Trinkoa"
msgid "compact"
msgstr "trinkotu"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Bideo modua"
@@ -509,17 +508,17 @@ msgstr "Bideo modua"
msgid "Delay before booting default image"
msgstr "Imajina lehenetsia abiarazi arteko atzerapena"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasahitza"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Pasahitza (berriro)"
@@ -554,14 +553,14 @@ msgid ""
msgstr ""
"``Murriztu komando-lerroko aukerak'' aukera ezin da erabili pasahitzik gabe"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Saiatu berriro"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Pasahitzak ez datoz bat"
@@ -603,7 +602,7 @@ msgstr ""
"\n"
"Zein da zure abioko unitatea?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -611,132 +610,132 @@ msgstr ""
"Hauek dira sarrerak.\n"
"Beste batzuk gehi ditzakezu edo lehendik daudenak aldatu."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Gehitu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Eginda"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Aldatu"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Zer sarrera-mota gehitu nahi duzu?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Beste SE bat (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Beste SE bat (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Beste SE bat (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Imajina"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Erantsi"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Irakurri/idatzi"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Ez-segurua"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiketa"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Lehenetsia"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-tamaina"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "BideorikEz"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Kendu sarrera"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Ez da etiketa hutsik onartzen"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Nukleo-imajina bat zehaztu behar duzu"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Erroko partizio bat zehaztu behar duzu"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Etiketa hau jadanik erabili da"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s interfaze aurkitu dira"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Baduzu besterik?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ba duzu %s interfazerik?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ez"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Bai"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Ikus hardwarearen informazioa"
@@ -745,17 +744,17 @@ msgstr "Ikus hardwarearen informazioa"
# #msgstr "%2$s %1$s txartelaren kontrolatzailea instalatzen"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s %s txartelaren kontrolatzailea instalatzen"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(%s modulua)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -765,7 +764,7 @@ msgstr ""
"Ohartu sartzen den edozein helbide 0x aurrizkiarekin jarri behar dela, adib. "
"'0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -776,17 +775,17 @@ msgstr ""
"Aukerak ``izena=balioa izena2=balioa2 ...'' formatuan daude.\n"
"Adibidez, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modulu-aukerak:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Zein %s kontrolatzaile probatu behar dut?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -805,15 +804,15 @@ msgstr ""
"blokeatuko du, baina\n"
"horrek ez luke kalterik egin beharko."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Autoproba"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Zehaztu aukerak"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -822,65 +821,63 @@ msgstr ""
"Huts egin du %s modulua kargatzean.\n"
"Beste parametro batzuekin saiatu nahi duzu berriro?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "X programen atzipena"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "rpm tresnen atzipena"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "onartu \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "administrazio-fitxategien atzipena"
-#: ../../any.pm_.c:754
-#, fuzzy
+#: ../../any.pm_.c:755
msgid "access to network tools"
-msgstr "rpm tresnen atzipena"
+msgstr "sareko tresnen atzipena"
-#: ../../any.pm_.c:755
-#, fuzzy
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
-msgstr "rpm tresnen atzipena"
+msgstr "Konpilaketa tresnen atzipena"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s jadanik gehituta)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Pasahitz hau sinpleegia da"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Eman erabiltzaile-izen bat"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Erabiltzaile-izenak minuskulaz idatzitako letrak, zenbakiak, `-' eta `_' "
"soilik izan ditzake"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Erabiltzaile-izena luzeegia da"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Erabiltzaile-izen hau gehituta dago jadanik"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Gehitu erabiltzailea"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -889,32 +886,32 @@ msgstr ""
"Sartu erabiltzaile bat\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Onartu erabiltzailea"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Benetako izena"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Erabiltzaile-izena"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikonoa"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Automatikoki hasi saioa"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -922,19 +919,19 @@ msgstr ""
"Ordenagailua konfigura dezaket automatikoki erabiltzaile bat sartzeko.\n"
"Eginbide hau erabili nahi duzu?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Aukeratu erabiltzaile lehenetsia:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Aukeratu erabiltzeko hizkuntza bat."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -943,35 +940,35 @@ msgstr ""
"Instalatu ondoren erabilgarri egongo diren beste hizkuntza batzuk aukera "
"ditzakezu"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Denak"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Eman baimena erabiltzaile guztiei"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Ez konpartitu"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s paketea instalatu egin behar da. Instalatu nahi duzu?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "NFS edo Samba erabiliz esporta dezakezu. Zein nahi duzu"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Derrigorrezko %s paketea falta da"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -987,11 +984,11 @@ msgstr ""
"\"Pertsonalizatua\" erabiliz erabiltzaile bakoitzarentzako ezarpena zehaztu "
"daiteke.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Abiarazi userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1000,31 +997,31 @@ msgstr ""
"taldea erabiltzen du. Userdrake erabil dezakezu talde \n"
"honetan erabiltzeak gehitzeko."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Ongi etorri Crackers-era"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Txikia"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estandarra"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Handia"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Handiagoa"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoidea"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1034,7 +1031,7 @@ msgstr ""
"oso erraz erasotzekoa: ez da erabili behar beste ordenagailu batzuekin edo \n"
"Internetekin konektatuta dauden makinetan. Ez dago pasahitzik."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1042,7 +1039,7 @@ msgstr ""
"Pasahitzak gaituta daude orain, baina sareko ordenagailu gisa erabiltzea ez "
"da komeni oraindik."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1050,7 +1047,7 @@ msgstr ""
"Hau da Internetera bezero gisa konektatzeko erabiliko diren "
"ordenagailuentzat gomendatzen den segurtasun estandarra. "
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1058,7 +1055,7 @@ msgstr ""
"Murriztapen batzuk daude, eta egiaztapen automatiko gehiago gauero egiten "
"dira."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1072,7 +1069,7 @@ msgstr ""
"zerbitzari gisa erabili ahal izateko. Oharra: zure makina Interneteko bezero "
"soila bada, hobe duzu maila apalagoa."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1080,42 +1077,45 @@ msgstr ""
"Aurreko mailan oinarritua, baina sistema erabat itxita dago.\n"
"Segurtasun-eginbideak maximoan jarrita daude."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "DrakSec Oinarrizko Aukerak"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Mesedez aukeratu nahi duzun segurtasun-maila"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Segurtasun-maila"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Erabili libsafe zerbitzarietarako"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Buffer-gainezkatzeen eta formatu-kateen erasoen aurka defendatzen duen "
"liburutegi bat."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Segurtasun Kudeatzailea (sarrera edo posta-e)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
+"Hemen aukeratu dezakezu zein tekla edo tekla konbinaziok\n"
+"egingo duen teklatu mota ezberdinen arteko konmutazioa\n"
+"(adib: latindarra eta ez latindarra)"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1132,58 +1132,58 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Ongi etorri GRUB sistema eragilearen aukeratzailera!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Erabili %c eta %c teklak zein sarrera nabarmenduko den hautatzeko."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sakatu sartu hautatutako SE abiarazteko, 'e' abiarazi aurreko"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandoak editatzeko, edo 'c' komando-lerroa nahi baduzu."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Nabarmendutako sarrera automatikoki abiaraziko da %d segundotan."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "ez dago nahiko leku /boot-en"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Mahaigaina"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Hasi menua"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Abioko kargatzailea ezin da %s partizio batean instalatu\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "oraindik ez da laguntzarik inplementatu.\n"
@@ -1235,64 +1235,63 @@ msgstr "Lilo/grub modua"
msgid "Yaboot mode"
msgstr "Yaboot modua"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Instalatu gaiak"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Erakutsi gaia kontsolapean"
-#: ../../bootlook.pm_.c:150
-#, fuzzy
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
-msgstr "Sortu partizio berria"
+msgstr "Gai berria sortu"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Babestu %s %s.old bezala"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Errorea"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "ezin da lilo mezuaren babes kopia egin"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Kopiatu %s %s-ra"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "ezin da lilo mezua aldatu"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Ez da lilo mezua aurkitzen"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Ezin da /etc/sysconfig/bootsplash idatzi."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Idatzi %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1300,17 +1299,18 @@ msgstr ""
"Ezin da /etc/sysconfig/bootsplash idatzi\n"
"Ez da fitxategia aurkitu."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Ezin da mkinitrd -f /boot/initrd-%s.img %s jaurti."
-#: ../../bootlook.pm_.c:246
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:245
+#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-msgstr "Ezin da mkinitrd -f /boot/initrd-%s.img %s jaurti."
+msgstr ""
+"Eraiki RAMdiskoa (initrd) honekin 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1318,25 +1318,24 @@ msgstr ""
"Ezin da LiLo berriro jaurti!\n"
"Jaurti \"lilo\" root bezala komando lerroan LiLo gai instalazioa osatzeko."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Berriro jaurti 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
-msgstr "BideorikEz"
+msgstr "Oharra"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "LiLo eta Bootsplash gai instalazio arrakastatsua"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Gai instalazioak hutsegin du!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1345,21 +1344,21 @@ msgstr ""
"Orain %s erabiltzen ari zara Abioko Kudeatzaile gisa.\n"
"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfiguratu"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Splash hautaketa"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Gaiak"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1373,44 +1372,44 @@ msgstr ""
"bakoitzarena banaka\n"
"hautatu dezakezu"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Lilo pantaila"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistema modua"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Abiarazi X-Window sistema hasieran"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ez, ez dut saioa automatikoki hasi nahi"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Bai, automatikoki honekin hasi nahi dut (erabiltzailea, mahaigaina)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Ados"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ezin da ireki /etc/inittab irakurtzeko: %s"
@@ -1508,50 +1507,58 @@ msgstr "Austria"
msgid "United States"
msgstr "Estatu Batuak"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Berria"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmuntatu"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Muntatu"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Zerbitzaria"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Muntatze-puntua"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Mesedez sartu WebDAV zerbitzariaren URL"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "URLak http:// edo https:// hasiera izan behar du"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Zerbitzaria: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Muntatze-puntua: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Aukerak: %s"
@@ -1605,9 +1612,8 @@ msgid "Details"
msgstr "Xehetasunak"
#: ../../diskdrake/hd_gtk.pm_.c:252
-#, fuzzy
msgid "No hard drives found"
-msgstr "Ez da inprimagairik aurkitu!"
+msgstr "Ez da disko zurrunik aurkitu"
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
@@ -1639,7 +1645,7 @@ msgstr "Hutsik"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Bestelakoa"
@@ -1783,7 +1789,7 @@ msgstr ""
"Babeskopiako partizio-taulak ez du tamaina bera\n"
"Jarraitu hala ere?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Kontuz"
@@ -2255,7 +2261,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm_.c:1150
msgid "Read-only"
-msgstr ""
+msgstr "Irakurketa-soilik"
#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
@@ -2344,7 +2350,7 @@ msgstr ""
"Mesedez sartu zure erabiltzaile-izena, pasahitza eta domeinu izena ostalari "
"honetara sartzeko."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Erabiltzaile-izena"
@@ -2359,23 +2365,23 @@ msgstr "Bilatu zerbitzarietan"
# #this syntax doesn't work yet in perl :-(
# #msgid "%s formatting of %s failed"
# #msgstr "%2$s(r)i %1$s formatua emateak huts egin du"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s(r)i formatua emateak huts egin du"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ez dakit nola formateatu %s %s motan"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "%s partizioa %s direktorioan muntatzeak huts egin du"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "errorea %s desmuntatzean: %s"
@@ -2393,7 +2399,7 @@ msgid "server"
msgstr "zerbitzaria"
#: ../../fsedit.pm_.c:240
-#, fuzzy, c-format
+#, c-format
msgid ""
"I can't read the partition table of device %s, it's too corrupted for me :(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
@@ -2402,11 +2408,11 @@ msgid ""
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-"Ezin dut zure partizio-taula irakurri, hondatuegia dago :(\n"
+"Ezin dut %s gailuaren partizio-taula irakurri, hondatuegia dago :(\n"
"Jarraitzen saia naiteke, partizio txarrak garbituz (DATU GUZTIAK galduko "
"dira!).\n"
"Beste irtenbidea DrakXri partizio-taula aldatzeko baimenik ez ematea da.\n"
-"(errorea %s da)\n"
+"(okerra %s da)\n"
"\n"
"Ados zaude partizio guztiak galtzearekin?\n"
@@ -2462,48 +2468,110 @@ msgstr "Ez dago zer eginik"
msgid "Error opening %s for writing: %s"
msgstr "Errorea %s idazteko irekitzean: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
-msgstr ""
+msgstr "Ez dago gidari alternatiborik"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
+"Ez dago OSS/ALSA gidari alternatibo ezagunik zure soinu txartelarentzako (%s)"
-#: ../../harddrake/sound.pm_.c:158
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
-msgstr "CUPSen konfigurazioa"
+msgstr "Soinu konfigurazioa"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
+"Hemen gidari alternatibo bat hautatu dezakezu (OSS edo ALSA) zure soinu "
+"txartelarentzat (%s)"
-#: ../../harddrake/sound.pm_.c:162
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
-msgstr "Kontrolatzailea"
+msgstr "Gidaria:"
+
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Laguntza"
-#: ../../harddrake/sound.pm_.c:173
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Itxaron... Konfigurazioa aplikatzen"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Itxaron mesedez"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
-msgstr "X kontrolatzailea"
+msgstr "Ez dago gidari ezagunik"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
-msgstr ""
+msgstr "Ez dago zure soinu txartelarentzako gidari ezagunik (%s)"
-#: ../../harddrake/sound.pm_.c:177
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
-msgstr "Modelo ezezaguna"
+msgstr "Gidari ezezaguna"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2512,6 +2580,11 @@ msgid ""
"<install at mandrakesoft dot com>\n"
"with subject: unlisted sound driver \"%s\""
msgstr ""
+"Zure soinu txartelarentzako \"%s\" gidaria zerrendatu gabe dago\n"
+"\n"
+"Mesedez bidali \"lspcidrake -v\" komandoaren emaitza hona\n"
+"<install at mandrakesoft dot com>\n"
+"unlisted sound driver \"%s\" gaiarekin."
#: ../../harddrake/ui.pm_.c:16
msgid "Model"
@@ -2571,13 +2644,14 @@ msgid ""
"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
"PCI/USB ids"
msgstr ""
+"- PCI eta USB gailuak: honek saltzaile, gailu, azpi-saltzaile eta azpi-gailu "
+"PCI/USB id-ak zerrendatzen ditu"
#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr "Busean kokapena"
#: ../../harddrake/ui.pm_.c:29
-#, fuzzy
msgid ""
"- pci devices: this gives the PCI slot, device and function of this card\n"
"- eide devices: the device is either a slave or a master device\n"
@@ -2588,13 +2662,12 @@ msgstr ""
"- scsi gailuak: scsi busa eta scsi gailu id-ak"
#: ../../harddrake/ui.pm_.c:32
-#, fuzzy
msgid "Old device file"
-msgstr "Gailu fitxategi zarra"
+msgstr "Gailu fitxategi zaharra"
#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
-msgstr ""
+msgstr "dev paketean erabiltzen den gailu estatikoaren izen zaharra"
#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
@@ -2602,7 +2675,7 @@ msgstr "devfs gailu berria"
#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
-msgstr ""
+msgstr "kenelaren devfs-k sortutako gailu dinamikoaren izen berria"
#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
@@ -2610,23 +2683,23 @@ msgstr "Botoi kopurua"
#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
-msgstr ""
+msgstr "gailuaren saltzaile izena"
#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
msgid "Alternative drivers"
-msgstr "Proba-orri alternatiboa (A4)"
+msgstr "Gidari alternatiboak"
#: ../../harddrake/ui.pm_.c:39
msgid "the list of alternative drivers for this sound card"
-msgstr ""
+msgstr "Soinu txartel honentzako gidari alternatiboen zerrenda"
#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Irten"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Laguntza"
@@ -2647,14 +2720,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Akatsa Txostendu"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Honi buruz..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Harddrakeri buruz"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2662,56 +2739,53 @@ msgstr ""
"HardDrake da hau, Mandrakeren hardware ezarpen tresna bat.\n"
"Bertsioa:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Egilea:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 bertsioa "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Detektatu hardwarea"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informazioa"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Konfiguratu modulua"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Exekutatu ezarpen tresna"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Detekzio martxan"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Itxaron mesedez"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Moduluaren parametro bakoitza konfiguratu dezakezu hemen."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "\"%s\" exekutatzen ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr ""
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "%s klasea frogatzen\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "lehenengo mailakoa"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "bigarren mailakoa"
@@ -3267,7 +3341,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
#: ../../help.pm_.c:246
-#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3292,29 +3365,32 @@ msgid ""
"need. You will not have to format it since DrakX will rewrite the whole\n"
"disk."
msgstr ""
-"Mandrake Linux-en CD-ROMak inkorporatutako berreskuratze-modua dauka.\n"
-"Honela egin behar duzu: abiarazi CD-ROMetik, sakatu >>F1<< tekla abioan\n"
-"eta, gonbitean, idatzi >>rescue<< (berreskuratu). Baina zure ordenagailua\n"
-"CD-ROMetik ezin bada abiarazi, urrats honetara itzuli beharko duzu\n"
-"gutxienez bi egoeratan laguntzeko:\n"
-"\n"
-" * abioko kargatzailea instalatzean, DrakXk disko nagusiko abioko sektorea\n"
-"(MBR) berridatziko du (baldin eta ez baduzu beste abioko kudeatzaile bat\n"
-"erabiltzen), Windows-ekin nahiz GNU/Linux-ekin hasi ahal izan zaitezen\n"
-"(zure sisteman Windows baduzu). Windows berrinstalatzen baduzu,\n"
+"Mandrake Linux-en CD-ROMak berreskuratze-modua dauka barnean. Hura erabili\n"
+"dezakezu CD-ROMetik abiatu, >>F1<< tekla abioan sakatu eta gonbitan "
+">>rescue<<\n"
+"idatziz. Baina zure ordenagailua CD-ROMetik abiatu ezin daitekeen kasuan, "
+"urrats\n"
+"honetara itzuli beharko zenuke laguntza bila gutxienez bi egoeratan:\n"
+"\n"
+" * abio-zamatzailea instalatzeko, DrakXek zure disko nagusiko abio-sektorea\n"
+"(MBR) berridatziko du (baldin eta ez baduzu beste abio-kudeatzaile bat\n"
+"erabiltzen), Windows nahiz GNU/Linux-ekin hasi ahal zaitezen (zure sisteman\n"
+"Windows daukazula suposatuz). Windows berrinstalatzen baduzu,\n"
"Microsoft-en instalazio-prozesuak abioko sektorea berridatziko du, eta gero\n"
"ezin izango duzu GNU/Linux abiarazi!\n"
"\n"
-" * arazoren bat sortzen bada eta GNU/Linux ezin baduzu abiarazi disko\n"
-"gogorretik, diskete hau izango da GNU/Linux abiarazteko bide bakarra.\n"
-"Sistema leheneratzeko makina bat sistema-tresna ditu, eta oso erabilgarria\n"
-"da sistemak huts egiten duenean, argindarra joan delako, idazketa-akats bat\n"
-"egin delako, pasahitzean akats tipografiko bat egin delako edo beste\n"
-"zerbait gertatu delako.\n"
+" * arazoren bat sortzen bada eta GNU/Linux disko zurrunetik abiarazi ezin "
+"baduzu,\n"
+"diskete hau izango da GNU/Linux abiarazteko bide bakarra. Sistema-tresna "
+"ugari ditu, argindarra eten, idazketa-akats tamalgarri bat, pasahitz batean "
+"akatsa, edo\n"
+"beste edozein arrazoigatik hondatu den sistema berreskuratzeko.\n"
"\n"
-"Urrats honetan klik egitean, unitatean disko bat sartzeko eskatuko zaizu.\n"
-"Diskete huts bat sartu behar duzu, edo garrantzirik gabeko datuak dituen\n"
-"bat. Ez duzu formateatu beharrik DrakXk disko osoa berridatziko baitu."
+"\"Bai\" esaten baduzu, unitatean diskete bat sartzea eskatuko zaizu. "
+"Sartuko\n"
+"duzun disketea hutsik egon behar da edo dituen datuak ez dira beharrezko "
+"izan\n"
+"behar. Ez duzu eratu beharko, DrakX-ek disko osoa gainidatziko baitu."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
@@ -4658,7 +4734,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "%s ere formateatu behar duzu"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4683,7 +4759,7 @@ msgstr ""
"\n"
"Zerbitzari horiek benetan instalatu nahi dituzu?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4691,21 +4767,25 @@ msgid ""
"\n"
"Do you really want to remove these packages?\n"
msgstr ""
+"Ondorengo paketeak zure sistema eguneratu ahal izateko ezabatuko dira: %s\n"
+"\n"
+"\n"
+"Pakete hauek ezabatu nahi dituzu?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Ezin da difusioa erabili NIS domeinurik gabe"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sartu FAT formatuko diskete bat %s unitatean"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Diskete honek ez du FAT formaturik"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4713,12 +4793,12 @@ msgstr ""
"Gordetako pakete-hautapen hau erabiltzeko, abiarazi instalazioa ``linux "
"defcfg=floppy''rekin"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Errorea %s fitxategia irakurtzean"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4959,7 +5039,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Ongi etorri %s(e)ra"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ez dago diskete-unitate erabilgarririk"
@@ -4989,11 +5069,11 @@ msgstr "Instalazio-klasea"
msgid "Please choose one of the following classes of installation:"
msgstr "Aukeratu instalazio-klase hauetako bat:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Pakete-taldearen hautapena"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Pakete indibidualen hautapena"
@@ -5069,7 +5149,7 @@ msgstr "Erakutsi automatikoki hautatutako paketeak"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalatu"
@@ -5089,7 +5169,7 @@ msgstr "Gutxieneko instalazioa"
msgid "Choose the packages you want to install"
msgstr "Aukeratu instalatu nahi dituzun paketeak"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instalatzen"
@@ -5116,17 +5196,17 @@ msgid "Installing package %s"
msgstr "%s paketea instalatzen"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Onartu"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Ezetsi"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5141,16 +5221,16 @@ msgstr ""
"Ez baduzu, sakatu Utzi instalazioa CDROM horretatik egin ez dezan."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Jarraitu hala ere?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Errore bat izan da paketeak ordenatzean:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Errore bat izan da paketeak instalatzean:"
@@ -5276,7 +5356,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5462,7 +5542,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Ziur zaude lizentzia errefusatzen duzula?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teklatua"
@@ -5671,11 +5751,11 @@ msgstr "Sartu pakete-hautapena daukan diskete bat"
msgid "Selected size is larger than available space"
msgstr "Hautatutako tamaina handiagoa da leku erabilgarria baino"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Instalazio-mota"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5683,19 +5763,19 @@ msgstr ""
"Ez duzu talde edo paketerik hautatuta\n"
"Nahi duzun gutxieneko instalazioa hautatu behar duzu"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Xrekin"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Oinarrizko dokumentazioarekin (gomendatua)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Instalazio minimo-minimoa (batez ere, urpmi gabe)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5705,16 +5785,16 @@ msgstr ""
"CD horietako bat ere ez baduzu, sakatu Utzi.\n"
"CDetako batzuk soilik falta badituzu, desauta itzazu, eta sakatu Ados."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" etiketadun CDROMa"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Instalazioa prestatzen"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5723,21 +5803,21 @@ msgstr ""
"%s paketea instalatzen\n"
"%% %d"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Instalazio-ondorengo konfigurazioa"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sartu abioko disketea %s unitatean"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sartu moduluak eguneratzeko disketea %s unitatean"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5811,7 +5891,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5831,159 +5911,159 @@ msgstr ""
"\n"
"Eguneratzeak instalatu nahi dituzu?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Mandrake Linux-en web gunearekin kontaktatzen ispiluen zerrenda lortzeko"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Aukeratu ispilu bat paketeak bertatik hartzeko"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ispiluarekin kontaktatzen pakete erabilgarrien zerrenda lortzeko"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Zein da zure ordu-zona?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardwarearen ordua GMTn ezarria"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP Zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Urruneko CUPS zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Inprimagailurik ez"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "ISA soinu-txartela duzu?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Instalazioa egindakoan, exekutatu \"sndconfig\" soinu-txartela "
"konfiguratzeko "
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Ez da soinu-txartelik detektatu. Instalazioa egin ondoren, saiatu \"harddrake"
"\"rekin "
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Laburpena"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Sagua"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Ordu-zona"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Inprimagailua"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN txartela"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Soinu-txartela"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Telebista-txartela"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Windows Domeinua"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Fitxategi lokalak"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ezarri root-aren pasahitza"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Pasahitzik ez"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Pasahitz hau sinpleegia da (gutxienez %d karaktere izan behar ditu)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP basea dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS Autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domeinua"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5998,20 +6078,34 @@ msgid ""
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
+"Honek W2K Domeinuko Kontrolatzaile Nagusi (PDC) batekin lanegin dezan, "
+"seguraski zure administratzaileak C:\\>net localgroup \"Pre-Windows 2000 "
+"Compatible Access\" everyone /add exekutatu beharko du eta ondoren "
+"zerbitzaria berrabiatu.\n"
+"Era berean Domeinuko Admin baten erabiltzaile-izen/pasahitza beharko dituzu "
+"makina Windows(TM) domeinura batzeko.\n"
+"Sarea oraindik gaitu gabe badago, Drakx saiatuko da domeinura batzen sareko "
+"ezarpen urratsaren ondoren.\n"
+"Ezarpen honek, edozein arrazoi medio, hutsegingo balu eta domeinu "
+"autentifikazioa ez badabil, exekutatu 'smbpasswd -j DOMEINUA -U ERABILTZAILEA"
+"%PASAHITZA' zure Windows(tm) Domeinua, eta Admin Erabiltzaile-izen/Pasahitza "
+"erabiliz, sistema abiatu ondoren.\n"
+"'wbinfo -t' komandoak autentifikazioaren sekretuak zuzenak diren frogatuko "
+"du."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "windowsen Autentifikazio Domeinua"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Domeinuaren Admin Erabiltzaile Izena"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Domeinuko Admin Pasahitza"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6042,19 +6136,19 @@ msgstr ""
"lehen\n"
"unitatean eta sakatu \"Ados\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Lehen diskete-unitatea"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Bigarren diskete-unitatea"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Saltatu"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6082,7 +6176,7 @@ msgstr ""
"Zure sistemarako abioko disko bat sortu nahi duzu?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6096,28 +6190,28 @@ msgstr ""
"abioko diskoa 1,44 Mb-ko disketean sortzeak huts egingo du\n"
"seguru asko, XFSk oso kontrolatzaile handia behar duelako)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Ez dago diskete-unitate erabilgarririk"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Aukeratu abioko diskoa egiteko erabili nahi duzun diskete-unitatea"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Sartu diskete bat %s unitatean"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Abioko disketea sortzen"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Abioko kargatzailea prestatzen"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6129,11 +6223,11 @@ msgstr ""
"Instalazioak jarraitu egingo du, baina\n"
"BootX erabili beharko duzu makina abiarazteko"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "aboot erabili nahi duzu?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6141,15 +6235,15 @@ msgstr ""
"Errorea aboot instalatzean, \n"
"instalazioa ezartzen saiatu lehen partizioa suntsitzen badu ere?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Abioko kargatzailea instalatzen"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Abioko kargatzailea instalatzeak huts egin du. Errore hau gertatu da:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6167,17 +6261,17 @@ msgstr ""
" Gero, idatzi: shut-down\n"
"Hurrengo abiaraztean abioko kargatzailearen gonbita ikusi behar duzu."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sartu diskete huts bat %s unitatean"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Auto-instalazioko disketea sortzen..."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6187,7 +6281,7 @@ msgstr ""
"\n"
"Ziur zaude orain irten nahi duzula?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6220,15 +6314,15 @@ msgstr ""
"Zure sistema konfiguratzeko informazioa Mandrake-ren Erabiltzailearen \n"
"Gida Ofizialeko instalatu ondorengo azalpenei buruzko kapituluan duzu."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Sortu auto-instalazioko disketea"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6242,15 +6336,15 @@ msgstr ""
"\n"
"Beharbada nahiago izango duzu instalazioa errepikatzea.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatizatua"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Errepikatu"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Gorde pakete-hautapena"
@@ -6286,14 +6380,14 @@ msgstr "Aurreratua"
msgid "Basic"
msgstr "Oinarrizkoa"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Aurrekoa"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Hurrengoa"
@@ -6439,21 +6533,20 @@ msgid "Belgian"
msgstr "belgikarra"
#: ../../keyboard.pm_.c:177
-#, fuzzy
msgid "Bengali"
-msgstr "gaitu"
+msgstr "Bengaliarra"
#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
-msgstr "bulgariarra (fonetikoa)"
+msgstr "Bulgariarra (fonetikoa)"
#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
-msgstr "bulgariarra (BDS)"
+msgstr "Bulgariarra (BDS)"
#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
-msgstr "brasildarra (ABNT-2)"
+msgstr "Brasildarra (ABNT-2)"
#: ../../keyboard.pm_.c:183
msgid "Bosnian"
@@ -6461,35 +6554,35 @@ msgstr "Bosniarra"
#: ../../keyboard.pm_.c:184
msgid "Belarusian"
-msgstr "bielorrusiarra"
+msgstr "Bielorrusiarra"
#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
-msgstr "suitzarra (diseinu alemana)"
+msgstr "Suitzarra (diseinu alemana)"
#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
-msgstr "suitzarra (diseinu frantsesa)"
+msgstr "Suitzarra (diseinu frantsesa)"
#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
-msgstr "txekiarra (QWERTY)"
+msgstr "Txekiarra (QWERTY)"
#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
-msgstr "alemana (letra zaharkiturik ez)"
+msgstr "Alemana (letra zaharkiturik ez)"
#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "Devanagari"
#: ../../keyboard.pm_.c:192
msgid "Danish"
-msgstr "daniarra"
+msgstr "Daniarra"
#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
-msgstr "Dvorak (Estatu Batuak)"
+msgstr "Dvorak (AEB)"
#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
@@ -6501,63 +6594,63 @@ msgstr "Dvorak (suediarra)"
#: ../../keyboard.pm_.c:196
msgid "Estonian"
-msgstr "estoniarra"
+msgstr "Estoniarra"
#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
-msgstr "georgiarra (diseinu \"errusiarra\")"
+msgstr "Georgiarra (diseinu \"errusiarra\")"
#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
-msgstr "georgiarra (diseinu \"latinoa\")"
+msgstr "Georgiarra (diseinu \"latinoa\")"
#: ../../keyboard.pm_.c:202
msgid "Greek"
-msgstr "grekoa"
+msgstr "Grekoa"
#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "Gujaratera"
#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "Gurmukhi"
#: ../../keyboard.pm_.c:205
msgid "Hungarian"
-msgstr "hungariarra"
+msgstr "Hungariarra"
#: ../../keyboard.pm_.c:206
msgid "Croatian"
-msgstr "kroaziarra"
+msgstr "Kroaziarra"
#: ../../keyboard.pm_.c:207
msgid "Israeli"
-msgstr "israeldarra"
+msgstr "Israeldarra"
#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
-msgstr "israeldarra (fonetikoa)"
+msgstr "Israeldarra (fonetikoa)"
#: ../../keyboard.pm_.c:209
msgid "Iranian"
-msgstr "iraniarra"
+msgstr "Iraniarra"
#: ../../keyboard.pm_.c:210
msgid "Icelandic"
-msgstr "islandiarra"
+msgstr "Islandiarra"
#: ../../keyboard.pm_.c:211
msgid "Italian"
-msgstr "italiarra"
+msgstr "Italiarra"
#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "Inuktitut"
#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
-msgstr "japoniarra 106 tekla"
+msgstr "Japoniarra 106 tekla"
#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
@@ -6565,11 +6658,11 @@ msgstr "Koreako teklatua"
#: ../../keyboard.pm_.c:217
msgid "Latin American"
-msgstr "latinamerikarra"
+msgstr "Latinamerikarra"
#: ../../keyboard.pm_.c:218
msgid "Laotian"
-msgstr "letoniarra"
+msgstr "Laostarra"
#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
@@ -6589,15 +6682,15 @@ msgstr "Lituaniako QWERTY \"fonetikoa\""
#: ../../keyboard.pm_.c:224
msgid "Latvian"
-msgstr "letoniarra"
+msgstr "Letoniarra"
#: ../../keyboard.pm_.c:225
msgid "Macedonian"
-msgstr "mazedoniarra"
+msgstr "Mazedoniarra"
#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanma (Birmaniarra)"
#: ../../keyboard.pm_.c:227
msgid "Mongolian (cyrillic)"
@@ -6605,67 +6698,67 @@ msgstr "Mongoliarra (zirilikoa)"
#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "Maltatarra (Erresuma Batua)"
#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "Maltatarra (AEB)"
#: ../../keyboard.pm_.c:230
msgid "Dutch"
-msgstr "holandarra"
+msgstr "Holandarra"
#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
-msgstr "poloniarra (qwerty diseinua)"
+msgstr "Poloniarra (qwerty diseinua)"
#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
-msgstr "poloniarra (qwertz diseinua)"
+msgstr "Poloniarra (qwertz diseinua)"
#: ../../keyboard.pm_.c:234
msgid "Portuguese"
-msgstr "portugesa"
+msgstr "Portugesa"
#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
-msgstr "kanadarra (Quebec)"
+msgstr "Kanadarra (Quebec)"
#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
-msgstr "errumaniarra (qwertz)"
+msgstr "Errumaniarra (qwertz)"
#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
-msgstr "errumaniarra (qwerty)"
+msgstr "Errumaniarra (qwerty)"
#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
-msgstr "errusiarra (Yawerty)"
+msgstr "Errusiarra (Yawerty)"
#: ../../keyboard.pm_.c:242
msgid "Slovenian"
-msgstr "esloveniarra"
+msgstr "Esloveniarra"
#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
-msgstr "eslovakiarra (QWERTZ)"
+msgstr "Eslovakiarra (QWERTZ)"
#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
-msgstr "eslovakiarra (QWERTY)"
+msgstr "Eslovakiarra (QWERTY)"
#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
-msgstr "serbiarra (zirilikoa)"
+msgstr "Serbiarra (zirilikoa)"
#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
-msgstr "tamila (Unicode)"
+msgstr "Tamila (Unicode)"
#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
-msgstr "tamila (TSCII)"
+msgstr "Tamila (TSCII)"
#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
@@ -6677,27 +6770,27 @@ msgstr "Tajikistango teklatua"
#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
-msgstr "turkiarra (tradizionala \"F\" modeloa)"
+msgstr "Turkiarra (tradizionala \"F\" eredua)"
#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
-msgstr "turkiarra (modernoa \"Q\" modeloa)"
+msgstr "Turkiarra (modernoa \"Q\" eredua)"
#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
-msgstr "ukrainarra"
+msgstr "Ukrainarra"
#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
-msgstr "Estatu Batuetako teklatua (nazioartekoa)"
+msgstr "AEBetako teklatua (nazioartekoa)"
#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "vietnamdarra QWERTY \"ilara numerikoa\""
+msgstr "Vietnamdarra QWERTY \"ilara numerikoa\""
#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
-msgstr "jugoslaviarra (latinoa)"
+msgstr "Jugoslaviarra (latindarra)"
#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
@@ -6740,7 +6833,7 @@ msgstr "Eskuineko \"Windows\" tekla"
msgid "Circular mounts %s\n"
msgstr "%s muntaketa zirkularrak\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Kendu bolumen logikoak lehendabizi\n"
@@ -6800,13 +6893,12 @@ msgid "Genius NetScroll"
msgstr "Genius NetScroll"
#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
msgid "Microsoft Explorer"
-msgstr "Microsoft IntelliMouse"
+msgstr "Microsoft Explorer"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
-msgstr "1 botoi"
+msgstr "Botoi 1"
#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
@@ -6876,22 +6968,21 @@ msgstr "bat ere ez"
msgid "No mouse"
msgstr "Sagurik gabe"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Probatu sagua"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Sagua aktibatzeko,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MUGITU GURPILA!"
#: ../../my_gtk.pm_.c:64
-#, fuzzy
msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
#: ../../my_gtk.pm_.c:159
msgid "Finish"
@@ -6921,11 +7012,11 @@ msgstr "Tolestu zuhaitza"
msgid "Toggle between flat and group sorted"
msgstr "Txandakatu alfabetikoaren eta taldeka ordenatuaren artean"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konektatu Internetekin"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6935,53 +7026,43 @@ msgstr ""
"Konexio batzuek pptp erabiltzen dute, bakan batzuek dhcp.\n"
"Ez badakizu, aukeratu 'erabili pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "erabili dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "erabili pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "erabili pptp"
#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
msgid "Web Server"
-msgstr "Zerbitzaria"
+msgstr "Web Zerbitzaria"
#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
msgid "Domain Name Server"
-msgstr "Domeinu-izena:"
+msgstr "Domeinuko Izen Zerbitzaria"
#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
msgid "Mail Server"
-msgstr "Gaitu Zerbitzaria"
+msgstr "Posta Zerbitzaria"
#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
msgid "POP and IMAP Server"
-msgstr "LDAP Zerbitzaria"
+msgstr "POP eta IMAP Zerbitzaria"
#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
msgid "No network card"
-msgstr "ez da sare-txartelik aurkitu"
+msgstr "Ez dago sare-txartelik"
#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
msgid ""
"drakfirewall configurator\n"
"\n"
@@ -6989,15 +7070,15 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"tinyfirewall konfiguratzailea\n"
+"drakfirewall konfiguratzailea\n"
"\n"
-"Mandrake Linux makina honetarako suebaki pertsonala konfiguratzen du.\n"
-"Suebaki ahaltsuagoa nahi baduzu, begiratu MandrakeSecurity Firewall \n"
-"banaketa espezializatua."
+"Honek Mandrake Linux makina honentzako suhesi pertsonala konfiguratzen du.\n"
+"Suhesi izatera zuzendutako soluzio ahaltsua nahi baduzu, mesedez begiratu\n"
+"MandrakeSecurity Firewall banaketa espezializatua."
#: ../../network/drakfirewall.pm_.c:147
msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
+msgstr "Zein zerbitzuetara konektatzen utzi nahi duzu Internetetik?"
#: ../../network/drakfirewall.pm_.c:148
msgid ""
@@ -7005,6 +7086,9 @@ msgid ""
"Valid examples are: 139/tcp 139/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
+"Beste portu batzu sartu ditzakezu.\n"
+"Adibide onargarriak dira: 139/tcp 139/udp.\n"
+"Begiratu /etc/services informazioa jasotzeko."
#: ../../network/drakfirewall.pm_.c:154
#, c-format
@@ -7013,15 +7097,17 @@ msgid ""
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535."
msgstr ""
+"Portu onartezina: %s.\n"
+"Formatu egokiak \"portua/tcp\" edo \"portu/udp\" dira,\n"
+"non portua 1 eta 65535 artean dagoen."
#: ../../network/drakfirewall.pm_.c:162
msgid "Everything (no firewall)"
-msgstr ""
+msgstr "Guztia (suhesirik gabe)"
#: ../../network/drakfirewall.pm_.c:164
-#, fuzzy
msgid "Other ports"
-msgstr "Probatu atakak"
+msgstr "Beste portu batzu"
#: ../../network/ethernet.pm_.c:37
msgid ""
@@ -7053,7 +7139,7 @@ msgstr ""
msgid "no network card found"
msgstr "ez da sare-txartelik aurkitu"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Sarea konfiguratzen"
@@ -7069,15 +7155,15 @@ msgstr ""
"Ostalari-izenak osoa izan behar du, erabat kualifikatua,\n"
"esate baterako, ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Ostalari-izena"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Sarea konfiguratzeko morroia"
@@ -7124,8 +7210,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Konfigurazio zaharra (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN konfigurazioa"
@@ -7161,23 +7247,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Zein protokolo erabili nahi duzu?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Nolako txartela duzu?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ez dakit"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7190,19 +7281,19 @@ msgstr ""
"\n"
"PCMCIA txartela baduzu, txartelaren irq eta io jakin behar dituzu.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Abortatu"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Jarraitu"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Zein da zure ISDN txartela?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7210,7 +7301,7 @@ msgstr ""
"ISDN PCI txartel bat detektatu dut, baina ez dakit zein motatakoa den. "
"Hautatu PCI txartel bat hurrengo pantailan."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Ez da ISDN PCI txartelik aurkitu. Hautatu bat hurrengo pantailan."
@@ -7262,7 +7353,7 @@ msgstr "Lehen DNS zerbitzaria (aukerakoa)"
msgid "Second DNS Server (optional)"
msgstr "Bigarren DNS zerbitzaria (aukerakoa)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7270,7 +7361,7 @@ msgstr ""
"\n"
"Deskonektatu egin zaitezke edo konexioa birkonfiguratu."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7278,11 +7369,11 @@ msgstr ""
"\n"
"Konexioa birkonfigura dezakezu."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Orain Internetekin konektatuta zaude."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7290,32 +7381,32 @@ msgstr ""
"\n"
"Internetekin konekta zaitezke, edo konexioa birkonfiguratu."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Orain ez zaude Internetekin konektatuta."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konektatu"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Deskonektatu"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Konfiguratu konexioa"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Interneteko konexioa eta konfigurazioa"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "%s konexioa konfiguratuko dugu orain."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7334,12 +7425,12 @@ msgstr ""
"\n"
"Jarraitzeko, sakatu Ados."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Sare-konfigurazioa"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7350,7 +7441,7 @@ msgstr ""
"Hautatu Ados zure konfigurazioa mantentzeko, edo hautatu Utzi Internet eta "
"Sare-konexioa birkonfiguratzeko.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7362,72 +7453,72 @@ msgstr ""
"Zure Internet/sare-konexioa konfiguratzera goaz.\n"
"Ez baduzu auto-detekzioa erabili nahi, desautatu kontrol-laukia.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Aukeratu konfiguratzeko profila"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Erabili auto-detekzioa"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Aditu modua"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Gailuak detektatzen..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Modem-konexio normala"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "%s atakan detektatua"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN konexioa"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s detektatua"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL konexioa"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "%s interfazean detektatua"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kable-konexioa"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "kable bidezko konexioa detektatu da"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Sare lokaleko konexioa (LAN)"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet txartela(k) detektatuta"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Aukeratu konfiguratu nahi duzun konexioa"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7437,23 +7528,23 @@ msgstr ""
"Aukeratu erabili nahi duzuna.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Interneteko konexioa"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Abioan hasi nahi duzu konexioa?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Sare-konfigurazioa"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Sarea berrabiarazi egin behar da"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7464,7 +7555,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7474,7 +7565,7 @@ msgstr ""
"\n"
"Konfigurazioa zure sistemari aplikatuko zaio orain.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7482,7 +7573,7 @@ msgstr ""
"Ondoren, zure X ingurunea berrabiaraztea gomendatzen dugu,\n"
"ostalari-izena aldatzearen arazoa saihesteko."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7492,7 +7583,7 @@ msgstr ""
"Probatu konexioa net_monitor edo mcc bidez. Konexioak funtzionatzen ez badu, "
"konfigurazioa berrabiarazi beharko duzu"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7503,7 +7594,7 @@ msgstr ""
"Gailu hau konfiguratuta mantentzeko, onartu, besterik gabe.\n"
"Ondoko eremuak aldatzen badituzu konfigurazio hau gainidatziko da."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7513,42 +7604,42 @@ msgstr ""
"Elementu bakoitza IP helbide gisa sartu behar da puntuz\n"
"bereizitako zenbakizko notazioan (adibidez, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Sareko %s gailua konfiguratzen"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (%s kontrolatzailea)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP helbidea"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Sare-maskara"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP automatikoa"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Abioan abiaraztekoa"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP helbideak 1.2.3.4 formatua izan behar du"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7560,42 +7651,52 @@ msgstr ""
"esate baterako, ``mybox.mylab.myco.com''.\n"
"Atebidearen IP helbidea ere sar dezakezu, baldin baduzu"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS zerbitzaria"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Atebidea (adib. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Atebide-gailua"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP helbideak 1.2.3.4 formatua izan behar du"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP helbideak 1.2.3.4 formatua izan behar du"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Proxy-en konfigurazioa"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy-a"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy-a"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Sare-txartelaren identifikazioa (eramangarrientzat baliagarria)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy-ak http://... izan behar du"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-ak ftp://... izan behar du"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URLaren hasieran 'ftp:' edo 'http:' egon behar da"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7964,6 +8065,7 @@ msgstr ""
#: ../../printerdrake.pm_.c:36
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
+"Inprimagailu auto-detekzioa (Bertakoa, TCP/Socket, eta SMB inprimagailuak)"
#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
@@ -8047,34 +8149,37 @@ msgid "Printerdrake"
msgstr "Printerdrake"
#: ../../printerdrake.pm_.c:178
-#, fuzzy
msgid "Checking your system..."
-msgstr "Inprimatze-sistema berrabiarazten ..."
+msgstr "Zure sistema egiaztatzen..."
#: ../../printerdrake.pm_.c:186
msgid ""
"There are no printers found which are directly connected to your machine"
-msgstr ""
+msgstr "Ez dira inprimagailurik aurkitu zure makinara zuzenean lotuta"
#: ../../printerdrake.pm_.c:198
-#, fuzzy
msgid ""
"The following printers\n"
"\n"
-msgstr "Ondorengo pakete hauek kenduko dira"
+msgstr ""
+"Ondorengo inprimagailuak\n"
+"\n"
#: ../../printerdrake.pm_.c:199
-#, fuzzy
msgid ""
"The following printer\n"
"\n"
-msgstr "Ondorengo pakete hauek kenduko dira"
+msgstr ""
+"Ondorengo inprimagailua\n"
+"\n"
#: ../../printerdrake.pm_.c:201
msgid ""
"\n"
"and one unknown printer are "
msgstr ""
+"\n"
+"eta inprimagailu ezezagun bat dago "
#: ../../printerdrake.pm_.c:203
#, c-format
@@ -8082,29 +8187,36 @@ msgid ""
"\n"
"and %d unknown printers are "
msgstr ""
+"\n"
+"eta %d inprimagailu ezezagun daude "
#: ../../printerdrake.pm_.c:207
msgid ""
"\n"
"are "
msgstr ""
+"\n"
+"daude "
#: ../../printerdrake.pm_.c:208
msgid ""
"\n"
"is "
msgstr ""
+"\n"
+"dago "
#: ../../printerdrake.pm_.c:210
-#, fuzzy
msgid "directly connected to your system"
-msgstr "Kopiatu zure sistemako letra-tipoak"
+msgstr "zure sistemara zuzenean lotuta"
#: ../../printerdrake.pm_.c:213
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
+"\n"
+"Inprimagailu ezezagun bat dago zure sistemara zuzenean lotuta"
#: ../../printerdrake.pm_.c:215
#, c-format
@@ -8112,33 +8224,32 @@ msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
+"\n"
+"%d inprimagailu ezezagun daude zure sistemara zuzenean lotuta"
#: ../../printerdrake.pm_.c:221
-#, fuzzy
msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Aukeratu inprimagailua konektatuta dagoen ataka."
+msgstr " (Ziurtatu zure inprimagailu guztiak lotuta eta piztuta daudela).\n"
#: ../../printerdrake.pm_.c:235
msgid ""
"Do you want to enable printing on the printers mentioned above or on "
"printers in the local network?\n"
msgstr ""
+"Inprimaketa gaitu nahi duzu goian aipatutako inprimagailuetan edo bertako "
+"sarean dauden inprimagailuetan?\n"
#: ../../printerdrake.pm_.c:236
-#, fuzzy
msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-"Inprimagailu hau (\"%s\")\n"
-"lehenetsi nahi duzu?"
+msgstr "Inprimaketa gaitu nahi duzu bertako sarean dauden inprimagailuetan?\n"
#: ../../printerdrake.pm_.c:238
-#, fuzzy
msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Abioan hasi nahi duzu konexioa?"
+msgstr "Inprimaketa gaitu nahi duzu goian aipatutako inprimagailuetan?\n"
#: ../../printerdrake.pm_.c:239
msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
+msgstr "Ziur zaude makina honetan inprimaketa ezarri nahi duzula?\n"
#: ../../printerdrake.pm_.c:240
#, c-format
@@ -8146,6 +8257,8 @@ msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
+"OHARRA: Inprimagailu eredua eta inprimaketa sistemaren arabera %d MB-etik "
+"gora software gehigarri instalatuko da."
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
@@ -8196,6 +8309,24 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
"want to set up your printer(s) now."
msgstr ""
+"\n"
+"Ongi etorri Inprimagailu Ezarpen Morroira\n"
+"\n"
+"Morroi honek zure konputagailu honetara lotutako inprimagailua(k), sarera "
+"zuzenean lotutakoa(k) edo Windows makina batera loturikoa(k) instalatzen "
+"lagunduko dizu.\n"
+"\n"
+"Makina honetara lotutako inprimagailuak badituzu, mesedez entxufatu eta "
+"piztu itzazu auto-detektatuak izan daitezen. Berdina sareko inprimagailu eta "
+"Windows makinetara lotutako inprimagailuekin ere.\n"
+"\n"
+"Ohartu sarera lotutako inprimagailuen auto-detekzioak denbora gehiago behar "
+"duela makina honetara lotuta dauden inprimagailuak bakarrik auto-"
+"detektatzeko baino. Beraz ezabatu sareko eta/edo windows-ostalari "
+"inprimagailuen auto-detekzioa behar ez dituzunean.\n"
+"\n"
+" Klikatu \"Hurrengoa\" prest zaudenean, eta \"Etsi\" zure inprimagailua "
+"orain ezarri nahi ez duzunean."
#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
msgid ""
@@ -8211,6 +8342,17 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
"want to set up your printer(s) now."
msgstr ""
+"\n"
+"Ongi etorri Inprimagailu Ezarpen Morroira\n"
+"\n"
+"Morroi honek zure konputagailu honetara lotutako inprimagailua(k) "
+"instalatzen lagunduko dizu.\n"
+"\n"
+"Makina honetara lotutako inprimagailuak badituzu, mesedez entxufatu eta "
+"piztu itzazu auto-detektatuak izan daitezen.\n"
+"\n"
+" Klikatu \"Hurrengoa\" prest zaudenean, eta \"Etsi\" zure inprimagailua "
+"orain ezarri nahi ez duzunean."
#: ../../printerdrake.pm_.c:297
msgid ""
@@ -8231,19 +8373,37 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
"want to set up your printer(s) now."
msgstr ""
+"\n"
+"Ongi etorri Inprimagailu Ezarpen Morroira\n"
+"\n"
+"Morroi honek zure konputagailu honetara lotutako inprimagailua(k) edo sarera "
+"zuzenean lotutakoa(k) instalatzen lagunduko dizu.\n"
+"\n"
+"Makina honetara lotutako inprimagailuak badituzu, mesedez entxufatu eta "
+"piztu itzazu auto-detektatuak izan daitezen. Berdina sareko inprimagailuekin "
+"ere.\n"
+"\n"
+"Ohartu sarera lotutako inprimagailuen auto-detekzioak denbora gehiago behar "
+"duela makina honetara lotuta dauden inprimagailuak bakarrik auto-"
+"detektatzeko baino. Beraz ezabatu sareko inprimagailuen auto-detekzioa behar "
+"ez duzunean.\n"
+"\n"
+" Klikatu \"Hurrengoa\" prest zaudenean, eta \"Etsi\" zure inprimagailua "
+"orain ezarri nahi ez duzunean."
#: ../../printerdrake.pm_.c:315
-#, fuzzy
msgid "Auto-detect printers connected to this machine"
-msgstr "Automatikoki detektatu inprimagailuak"
+msgstr "Auto-detektatu makina honetara lotutako inprimagailuak"
#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
+msgstr "Auto-detektatu bertako sarera zuzenean lotutako inprimagailuak"
#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
+"Auto-detektatu Microsoft Windows darabilten makinetara lotutako "
+"inprimagailuak"
#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
#: ../../printerdrake.pm_.c:587
@@ -8275,9 +8435,8 @@ msgstr ""
#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
-#, fuzzy
msgid "Printer auto-detection"
-msgstr "Egin auto-detekzioa"
+msgstr "Inprimagailuen auto-detekzioa"
#: ../../printerdrake.pm_.c:408
#, c-format
@@ -8444,9 +8603,8 @@ msgid "Detected model: %s %s"
msgstr "Detektatutako eredua: %s %s"
#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
-#, fuzzy
msgid "Scanning network..."
-msgstr "Sarea abiarazten ..."
+msgstr "Sarean bilatzen..."
#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
@@ -8480,6 +8638,8 @@ msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
+" Nahi zenuen inprimagailua auto-detektatu bada, hautatu ezazu zerrendatik "
+"eta gehitu erabiltzaile-izena, pasahitza, eta/edo lantaldea beharrezko bada."
#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
@@ -8498,9 +8658,8 @@ msgid "Workgroup"
msgstr "Lantaldea"
#: ../../printerdrake.pm_.c:853
-#, fuzzy
msgid "Auto-detected"
-msgstr "Auto-detektatu"
+msgstr "Auto-detektatuta"
#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
@@ -8634,19 +8793,22 @@ msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
+"Aukeratu auto-detektatutako inprimagailuetako bat zerrendatik edo sartu "
+"ostalari-izena edo IP eta, nahi baduzu, portu zenbakia (jatorrian 9100 da) "
+"eremuetan."
#: ../../printerdrake.pm_.c:1085
-#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""
-"Socket inprimagailuan inprimatzeko, inprimagailuaren ostalari-izena\n"
-"eman behar duzu eta, nahi baduzu, ataka-zenbakia. HP JetDirect "
-"zerbitzarietan ataka-zenbakia normalki 9100 izaten da, beste zerbitzari "
-"batzuetan aldatu egin daiteke. Begiratu zure hardwarearen eskuliburuan."
+"TCP edo Socket inprimagailu batera inprimatzeko, inprimagailuaren ostalari-"
+"izena edo IP eta, nahi baduzu, portu zenbakia (jatorrian 9100 da) eman behar "
+"dituzu. HP HP JetDirect zerbitzarietan portu-zenbakia normalki 9100 izaten "
+"da, beste zerbitzari batzuetan aldatu egin daiteke. Begiratu zure "
+"hardwarearen eskuliburuan."
#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
@@ -8806,7 +8968,6 @@ msgstr ""
"ezazu konektatuta dagoen makinan."
#: ../../printerdrake.pm_.c:1813
-#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8817,20 +8978,19 @@ msgid ""
"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
"adjust the head alignment settings with this program."
msgstr ""
-"Lexmark inkjet-ekin eta konfigurazio honekin inprimatu ahal , izateko, "
-"Lexmark-ek emandako inkjet inprimagailu-kontrolatzaileak behar dituzu "
-"(http://www.lexmark.com/). Joan Estatu Batuetako gunera eta egin klik "
-"\"Drivers\" botoian. Gero aukeratu modeloa eta ondoren \"Linux\" sistema "
-"eragile gisa. Kontrolatzaileak RPM pakete gisa edo instalazio grafiko "
+"Lexmark inkjet eta konfigurazio honekin inprimatu ahal izateko, Lexmark-ek "
+"emandako inkjet inprimagailu-gidariak behar dituzu (http://www.lexmark."
+"com/). Klikatu \"Drivers\" estekan. Gero aukeratu eredua eta ondoren \"Linux"
+"\" sistema eragile gisa. Gidariak RPM pakete gisa edo instalazio grafiko "
"interaktiboa duten shell script gisa egoten dira. Ez da beharrezkoa "
-"konfigurazio hau interfaze grafikoen bidez egitea. Ezeztatu zuzenean "
+"konfigurazio hau bitarteko grafikoen bidez egitea. Ezeztatu zuzenean "
"lizentzia-kontratuaren ondoren. Gero inprimatu inprimatze-burua lerrokatzeko "
"orriak \"lexmarkmaintain\"ekin eta doitu burua lerrokatzeko ezarpenak "
"programa honekin."
#: ../../printerdrake.pm_.c:1816
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-msgstr ""
+msgstr "GDI Laser Inprimagailua Zenographics ZJ-Stream Formatua erabiliz"
#: ../../printerdrake.pm_.c:1817
msgid ""
@@ -8854,6 +9014,24 @@ msgid ""
"The first command can be given by any normal user, the second must be given "
"as root. After having done so you can print normally.\n"
msgstr ""
+"Zure inprimagailua ekoizle desberdinek saltzen dituzten GDI laser "
+"inprimagailuen (winprinters) taldekoa da, Zenographics ZJ-stream raster "
+"formatua erabiltzen dute datuak inprimagailura bidaltzeko. Inprimagailu "
+"hauentzako gidaria hasierako garapen egoeran dago eta horregatik baliteke "
+"beti behar bezala ez ibiltzea. Bereziki posible da inprimagailuak A4 paper "
+"neurria aukeratzen duzunean bakarrik lanegitea.\n"
+"\n"
+"Inprimagailu hauetako batzuei, HP LaserJet 1000 esaterako, jatorrian gidaria "
+"beretzako sortu zen, pizterakoan beraien firmwarerra zamatu behar zaie. HP "
+"LaserJet 1000-ren kasuan inprimagailuaren Windows gidari CDa edo zure "
+"Windows partizioa behatu behar duzu \"sihp1000.img\" fitxategiaren bila eta "
+"inprimagailuari zamatu behar diozu ondorengo komandoetako batekin:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"Lehenengo komandoa edozein erabiltzaile arruntak eman dezake, bigarrena root "
+"bezala eman behar da. Hori egin ondoren normaltasunez inprimatu dezakezu.\n"
#: ../../printerdrake.pm_.c:2040
msgid ""
@@ -9014,14 +9192,14 @@ msgstr ""
"<fitxategia>\". "
#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
-#, fuzzy, c-format
+#, c-format
msgid ""
"To know about the options available for the current printer read either the "
"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Uneko inprimagailuak dituen aukerak ezagutzeko, irakurri ondoko zerrenda edo "
-"egin klik \"Inprimatzeko aukeren zerrenda\" botoian.%s\n"
+"egin klik \"Inprimatu aukeren zerrenda\" botoian.%s%s\n"
"\n"
#: ../../printerdrake.pm_.c:2300
@@ -9109,9 +9287,9 @@ msgid "Printing/Scanning on \"%s\""
msgstr "\"%s\": inprimatzen/eskaneatzen"
#: ../../printerdrake.pm_.c:2346
-#, fuzzy, c-format
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "\"%s\": inprimatzen/eskaneatzen"
+msgstr "Inprimaketa/Argazki Txartelen Sarrera \"%s\"-n"
#: ../../printerdrake.pm_.c:2347
#, c-format
@@ -9121,7 +9299,7 @@ msgstr "\"%s\" inprimagailuan inprimatzen"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9132,7 +9310,7 @@ msgid "Print option list"
msgstr "Inprimatzeko aukeren zerrenda"
#: ../../printerdrake.pm_.c:2373
-#, fuzzy, c-format
+#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
@@ -9144,13 +9322,12 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-"Funtzio anitzeko HP gailua automatikoki konfiguratuta dago eskaneatzeko. "
-"Orain \"scanimage\"rekin eskanea dezakezu (\"scanimage -d hp:%s\" eskanerra "
-"zehazteko, bat baino gehiago badituzu) komando-lerrotik edo \"xscanimage\" "
-"edo \"xsane\" interfaze grafikoekin. GIMP erabiltzen baduzu, \"File\"/"
-"\"Acquire\" menuko puntu egokiaren bidez ere eskanea dezakezu. Informazio "
-"gehiago nahi baduzu, idatzi \"man scanimage\" eta \"man sane-hp\" komando-"
-"lerroan.\n"
+"Zure funtzio-anitzeko gailua automatikoki konfiguratu zen eskaneatu ahal "
+"izateko. Orain \"scanimage\"rekin eskanea dezakezu (\"scanimage -d hp:%s\" "
+"eskanerra zehazteko, bat baino gehiago badituzu) komando-lerrotik edo "
+"\"xscanimage\" edo \"xsane\" interfaze grafikoekin. GIMP erabiltzen baduzu, "
+"\"File\"/\"Acquire\" menuko puntu egokiaren bidez ere eskanea dezakezu. "
+"Informazio gehiago nahi baduzu, deitu \"man scanimage\" komando-lerroan.\n"
"\n"
"Ez erabili \"scannerdrake\" gailu honekin!"
@@ -9166,6 +9343,16 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
+"Zure inprimagailua automatikoki konfiguratu zen zure PC-tik argazki txartel "
+"unitateetara sarrera emateko. Orain \"MtoolsFM\" programa grafikoa erabiliz "
+"(Menua: \"Aplikazioak\" -> \"Fitxategi tresnak\" -> \"MTools Fitxategi "
+"Kudeatzailea\") edo \"mtools\" komando lerroko utilitatea erabiliz (sartu "
+"\"man mtools\" komando lerroan informazio gehiago jasotzeko) zure argazki "
+"txartelak atzitu ditzakezu. Txartelaren fitxategi-sistema \"p:\" unitate "
+"hizkipean aurkituko duzu, edo ondorengo hizkietan argazki txartela duten HP "
+"inprimagailu bat baino gehiago baduzu. \"MtoolsFM\" tresnan unitate hizki "
+"artean mugitu zaitezke fitxategi-zerrenden goi-eskuin ertzetan dagoen eremua "
+"erabiliz."
#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
#: ../../printerdrake.pm_.c:3170
@@ -9459,9 +9646,8 @@ msgid "Printer options"
msgstr "Inprimagailuaren aukerak"
#: ../../printerdrake.pm_.c:2989
-#, fuzzy
msgid "Preparing Printerdrake..."
-msgstr "PrinterDrake prestatzen..."
+msgstr "Printerdrake prestatzen..."
#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
@@ -9684,10 +9870,6 @@ msgstr ""
"Bete ftp proxy-aren datuak\n"
"Utzi hutsik ez baduzu ftp proxy-rik nahi"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "URLaren hasieran 'ftp:' edo 'http:' egon behar da"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9735,6 +9917,41 @@ msgstr "mkraid-ek huts egin du (beharbada raid-tresnak faltako dira?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ez dago nahikoa partizio %d RAID mailarako\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Segurtasun-maila:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Segurtasun-maila"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Segurtasun Kudeatzailea:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (lehenetsia)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Segurtasun-maila ezartzen"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Segurtasun aukerak ezartzen"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Abiarazi ALSA (Advanced Linux Sound Architecture) soinu-sistema"
@@ -10046,7 +10263,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fitxategi-konpartitzea"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistema"
@@ -10123,79 +10340,71 @@ msgstr "Sar zaitez software librearen munduan"
#: ../../share/advertising/02-community.pl_.c:10
msgid "Want to know more about the Open Source community?"
-msgstr ""
+msgstr "Iturburu Irekiaren Komunitateari buruz gehiago jakin nahi?"
#: ../../share/advertising/02-community.pl_.c:11
-#, fuzzy
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums you'll find on our \"Community\" webpages"
msgstr ""
-"Ezagutu iturburu irekiaren komunitatea eta egin zaitez partaide. Sartu "
-"eztabaida-taldeetan \"Komunitatearen\" web orrien bidez eta ikasi, irakatsi "
-"eta lagundu beste batzuei."
+"Zure jakinduria elkarbanatzeko eta Linux tresnak eraikitzen laguntzeko, egin "
+"zaitez gure \"Komunitate\" web-orrian aurkituko dituzun eztabaida-taldeen "
+"partaide"
#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
msgid "Get the most from the Internet"
-msgstr "Konektatu Internetekin"
+msgstr "Eskuratu Internetek eman dezakeen guztia"
#: ../../share/advertising/03-internet.pl_.c:10
-#, fuzzy
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 9.0k software-aukera onenak eskaintzen dizkizu Internetek "
-"eman lezakeen guztia eskura dezazun. Murgildu amaraunean eta ikusi "
-"animazioak Mozilla eta Konqueror-ekin, trukatu mezuak eta antolatu zure "
-"informazio pertsonala Evolution eta Kmail-ekin, eta askoz ere gehiago"
+"Mandrake Linux 9.0k zuretzako software honenak aukeratu ditu. Surfeatu "
+"Webean eta ikusi animazioak Mozilla eta Konquerorrekin, edo irakurri zure "
+"posta eta kudeatu zure informazio pertsonalak Evolution eta Kmail erabiliz"
#: ../../share/advertising/04-multimedia.pl_.c:9
msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
+msgstr "Ezagutu itzazu tresna grafiko eta multimedia eguneratuenak!"
#: ../../share/advertising/04-multimedia.pl_.c:10
msgid "Push multimedia to its limits!"
-msgstr ""
+msgstr "Sakatu multimedia bere limitera!"
#: ../../share/advertising/04-multimedia.pl_.c:11
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
"files, edit and handle your images or photos, and play videos"
msgstr ""
-"Mandrake Linux 8.2ekin zure multimedia ordenagailua mugaraino eramango duzu! "
-"Erabili audio-fitxategiak erreproduzitzeko, irudiak eta argazkiak editatu "
-"eta manipulatzeko eta TB eta bideoak ikusteko eta beste gauza askotarako "
-"azken softwarea "
+"Mandrake Linux 9.0k audio fitxategiak jotzeko, zure argazkiak editatu eta "
+"manipulatzeko, eta bideoak ikusteko software berriena erabiltzeko aukera "
+"ematen dizu"
#: ../../share/advertising/05-games.pl_.c:9
msgid "Games"
msgstr "Jokoak"
#: ../../share/advertising/05-games.pl_.c:10
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
"strategy, ..."
msgstr ""
-"Mandrake Linux 8.2k iturburu irekiko jokorik onenak eskaintzen ditu - makina-"
-"jokoak, kiroletakoak, estrategiakoak, ..."
+"Mandrake Linux 9.0k Iturburu Irekiko jokorik onenak eskaintzen ditu - makina-"
+"jokoak, ekintza, estrategia, ..."
#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake-ren Kontrol Zentroa"
#: ../../share/advertising/06-mcc.pl_.c:10
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
"your machine"
msgstr ""
-"Mandrake Linux 8.2ren Kontrol Zentroak leku bakarretik zure Mandrake sistema "
-"erabat konfiguratu eta pertsonalizatzeko aukera ematen dizu"
+"Mandrake Linux 9.0k zure makina erabat pertsonalizatu eta konfiguratzeko "
+"tresna ahaltsua dauka"
#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
@@ -10203,78 +10412,80 @@ msgstr "Erabiltzaile-interfazeak"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
+"Mandrake Linux 9.0k erabat aldatu daitezkeen 11 erabiltzaile interfaze "
+"eskaintzen dizkizu: KDE 3, Gnome 2, WindowMaker, ..."
#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
msgid "Development simplified"
-msgstr "Garapena"
+msgstr "Garapena erraztuta"
#: ../../share/advertising/08-development.pl_.c:10
msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
+msgstr "Mandrake Linux 9.0 garapen plataforma berriena da"
#: ../../share/advertising/08-development.pl_.c:11
-#, fuzzy
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
"development environments"
msgstr ""
-"Mandrake Linux 8.2 garapen-plataforma ezin hobea da. Ezagutu GNU gcc "
-"konpilatzailearen ahalmen osoa eta iturburu irekiko garapen-ingurune onenak"
+"GNU gcc 3 konpilatzailearen indar osoa erabili, baita Iturburu Irekiko "
+"garapen ingurune onenak ere"
#: ../../share/advertising/09-server.pl_.c:9
msgid "Turn your machine into a reliable server"
-msgstr ""
+msgstr "Bihurtu zure makina zerbitzari fidagarria"
#: ../../share/advertising/09-server.pl_.c:10
-#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Bihur ezazu zure makina zerbitzari ahaltsu, saguaren klik gutxi batzuk "
-"eginez: Web zerbitzaria, posta, suebakia, bidatzailea, fitxategi- eta "
-"inprimaketa-zerbitzaria,..."
+"eginez: Web zerbitzaria, posta, suhesia, routerra, fitxategi eta inprimaketa "
+"zerbitzaria, ..."
#: ../../share/advertising/10-mnf.pl_.c:9
msgid "Optimize your security"
-msgstr ""
+msgstr "Optimizatu zure segurtasuna"
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
"F.)"
msgstr ""
+"MandrakeSecurity aukeren artean Multi Network Firewall (M.N.F.) produktua "
+"dauka"
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
+"Suhesi produktu honek zure segurtasun beharrak hasetzeko aukera emango dizun "
+"sareko ezaugarriak ditu"
#: ../../share/advertising/10-mnf.pl_.c:12
msgid "This product is available on MandrakeStore website"
-msgstr ""
+msgstr "Produktu hau MandrakeStore webgunean eskuragarri dago"
#: ../../share/advertising/11-mdkstore.pl_.c:9
msgid "The official MandrakeSoft store"
-msgstr ""
+msgstr "MandrakeSoft denda ofiziala"
#: ../../share/advertising/11-mdkstore.pl_.c:10
-#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
-"Gure denda elektronikoan eskuragai dituzu gure Linux soluzioen aukera "
-"zabala, produktuei buruzko eskaintza bereziak eta bestelako 'gutiziak'"
+"Gure Linux soluzioen aukera osoa, eta baita produktu eta beste \"gutizia\" "
+"batzutan eskaintza bereziak eskuragarri daude lerroan gure e-dendan:"
#: ../../share/advertising/12-mdkstore.pl_.c:9
msgid "Strategic partners"
-msgstr ""
+msgstr "Kide estrategikoak"
#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
@@ -10282,20 +10493,25 @@ msgid ""
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
+"MandrakeSoftek, Mandrake Linuxentzako soluzio bateragarri profesionalak "
+"eskaintzen dituzten konpainien artean aukeratutako batzuekin lanegiten du. "
+"MandrakeStoren aipatutako kide horien zerrenda eskuratu daiteke."
#: ../../share/advertising/13-mdkcampus.pl_.c:9
msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr ""
+msgstr "Ezagutu MandrakeSoften Linux-Campus entrenamendu katalogoa"
#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
"The training program has been created to respond to the needs of both end "
"users and experts (Network and System administrators)"
msgstr ""
+"Entrenamendu programa bien, erabiltzaileen eta espertuen (Sare eta Sistema "
+"administratzaileak), beharrei erantzuteko sortu da"
#: ../../share/advertising/13-mdkcampus.pl_.c:11
msgid "Certify yourself on Linux"
-msgstr ""
+msgstr "Zertifikatu zure burua Linux-ekiko"
#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
@@ -10303,43 +10519,52 @@ msgid ""
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
"certification program (worldwide professional technical certification)"
msgstr ""
+"Zeure buruari lerroan edo gure entrenamendu kide sarearen bitartez irakastea "
+"erabakitzen baduzu, Linux-Campus katalogoak LPI zertifikazio ezagunaren "
+"programarako prestatuko zaitu (mundu zabaleko zertifikazio tekniko "
+"profesionala)"
#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
msgid "Become a MandrakeExpert"
-msgstr "MandrakeExpert"
+msgstr "Bilakatu zaitez MandrakeExpert"
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform"
msgstr ""
+"Aurkitu zure arazoei erantzuna MandrakeSoft-en lerroko euskarri "
+"plataformaren bitartez"
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
+"Batu MandrakeSoft Euskarri taldeetara eta Linuxen Lerroko Komunitateetara "
+"zure jakinduria elkarbanatu eta besteei lagundu lerroko euskarri teknikoko "
+"webguneetan Aditu ezaguna bilakatuz:"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert"
+msgstr "MandrakeExpert Korporatiboa"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
msgid "An online platform to respond to company's specific support needs"
-msgstr ""
+msgstr "Konpainien euskarri behar espezifikoei erantzuteko lerroko plataforma"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
+"Gertaera guztiek MandrakeSoften Aditu tekniko kualifikatu bakarraren "
+"jarraipena izango dute."
#: ../../share/advertising/17-mdkclub.pl_.c:9
msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
+msgstr "Ezagutu \"MandrakeClub\" eta \"Mandrake Corporate Club\""
#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
@@ -10350,16 +10575,22 @@ msgid ""
"competititve edge, if you want to support Mandrake Linux development, join "
"MandrakeClub!"
msgstr ""
+"MandrakeClub eta Mandrake Corporate Club beraien Linux banaketa gogokoenari "
+"laguntzearekin batera pribilegio bereziak jasotzen dituzten Mandrake Linuxen "
+"enpresa erabiltzaile eta erabiltzaile pribatuentzako sortu zen. Gure "
+"produktuak gustoko badituzu, zure konpainiak gure produktuengandik etekina "
+"badu lehiakortasuna lortzeko, Mandrake Linux garapenari euskarri eman nahi "
+"badiozu, sartu MandrakeClubera!"
#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Paketeak instalatzen..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Amaitu saioa eta, ondoren, sakatu Ktrl-Alt-Atzera"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Hasi berriro saioa %s(e)n aldaketak aktibatzeko"
@@ -10400,16 +10631,6 @@ msgstr "Gehitu/Ezabatu erabiltzaileak"
msgid "Add/Del Clients"
msgstr "Gehitu/Ezabatu Bezeroak"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Laguntza"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Abiapen Disketea"
@@ -10458,48 +10679,64 @@ msgstr "Gehitu erabiltzailea -->"
msgid "<-- Del User"
msgstr "<-- Ezabatu Erabiltzailea"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Sare Abiapen Irudiak"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Gehitu Bezeroa -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Ezabatu Bezeroa"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "dhcpd Ezarpena..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Konfigurazio aurreratua"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Idatzi Ezarpena"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Mesedez sartu disketea:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Ezin izan da disketea atzitu!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Disketea kendu dezakezu orain"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Ez dago diskete-unitate erabilgarririk!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO irudia %s da"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Zerbaitek hutsegin du! - mkisofs instalatuta dago?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "\"/etc/dhcpd.conf\" sortu behar da lehenbizi!"
@@ -10605,13 +10842,12 @@ msgid "WARNING"
msgstr "ADI"
#: ../../standalone/drakbackup_.c:724
-#, fuzzy
msgid "FATAL"
-msgstr "FAT"
+msgstr "LARRIA"
#: ../../standalone/drakbackup_.c:725
msgid "INFO"
-msgstr ""
+msgstr "INFO"
#: ../../standalone/drakbackup_.c:737
msgid ""
@@ -10647,12 +10883,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Aurrerapen guztia"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10660,42 +10896,46 @@ msgid ""
"Warning: If you've already done this process you'll probably\n"
" need to purge the entry from authorized_keys on the server."
msgstr ""
+"%s badago, ezabatu?\n"
+"\n"
+"Adi: Dagoeneko prozesu hau burutu baduzu seguraski\n"
+"authorized_keys sarrera purgatu beharko duzu zerbitzarian."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Honek giltzak sortzeko denbora tarte bat behar du."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
-msgstr ""
+msgstr "OKERRA: Ezin da %s jaurti."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
-msgstr ""
+msgstr "Pasahitz eskaririk ez %s-n %s portuan"
-#: ../../standalone/drakbackup_.c:849
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:852
+#, c-format
msgid "Bad password on %s"
-msgstr "Pasahitzik ez"
+msgstr "%s-n pasahitz okerra"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
-msgstr ""
+msgstr "%s %s-ra transferitzeko baimena ukatu da"
-#: ../../standalone/drakbackup_.c:851
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:854
+#, c-format
msgid "Can't find %s on %s"
-msgstr "Ezin da %s ireki: %s\n"
+msgstr "Ezin da %s %s-n bilatu"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
-msgstr ""
+msgstr "%s-k ez du erantzuten"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10705,84 +10945,91 @@ msgid ""
"\n"
"without being prompted for a password."
msgstr ""
+"Transferentzia arrakastatsua\n"
+"Zerbitzarian saioa hasi dezakezula frogatu dezakezu honela:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"eta ez zaizu pasahitzik eskatuko."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "Urruneko WebDAV gunea dagoeneko sinkronizatuta!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "WebDAV transferentziak hutsegin du!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Unitatean ez dago CDR/DVDR!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr "Ez dirudi euskarri idazgarria denik!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr "Ez da euskarri ezabagarria!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Euskarria ezabatzeak denbora tarte bat har dezake."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
-msgstr ""
+msgstr "Baimen arazoa CD atzipenean."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
-msgstr ""
+msgstr "Zintarik ez %s-n!"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Sistema-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Disko gogorraren babeskopia fitxategiak... "
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Erabiltzaile-fitxategien babeskopia... "
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Disko gogorraren babeskopia egiten..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Beste fitxategi batzuen babeskopia... "
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
-msgstr "Erabili zinta babeskopia egiteko"
+msgstr "Ez dago babestu beharreko aldaketarik!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup ekintzak %s bitartez:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1342
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1346
+#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-"FTPk bidalitako fitxategi-zerrenda: %s\n"
+"FTP bitartez bidalitako fitxategi-zerrenda: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10792,38 +11039,44 @@ msgstr ""
" FTP konexio-arazoa: zure babeskopien fitxategiak ezin izan dira bidali FTP "
"bidez.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup ekintzak CD bitartez:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup ekintzak zinta bitartez:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Errorea posta bidaltzean. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
-msgstr ""
+msgstr "Ezin da katalogoa sortu!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Fitxategi-hautapena"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Hautatu fitxategiak edo direktorioak eta egin klik 'Gehitu'n"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10831,27 +11084,26 @@ msgstr ""
"\n"
"Hautatu behar dituzun aukera guztiak.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Aukera horiek /etc direktorioko fitxategi guztiak kopiatu eta leheneratu "
"ditzakete.\n"
-#: ../../standalone/drakbackup_.c:1600
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
-msgstr "Sistema-fitxategien babeskopia. ( /etc direktorioa )"
+msgstr "Sistema-fitxategien babeskopia egin. (/etc direktorioa )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Erabili babeskopia inkrementala (ez ordeztu kopia zaharrak)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Ez sartu fitxategi kritikoak (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10859,136 +11111,136 @@ msgstr ""
"Aukera honekin /etc direktorioaren edozein bertsio leheneratu\n"
"ahal izango duzu."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Hautatu babeskopian sartu nahi dituzun erabiltzaile guztiak."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Ez sartu arakatzailearen cache-a"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Erabili babeskopia inkrementalak (ez ordeztu kopia zaharrak)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Kendu hautatutakoak"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Erabiltzaileak"
-#: ../../standalone/drakbackup_.c:1773
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
-msgstr "Erabili FTP konexioa babeskopia egiteko"
+msgstr "Erabili sareko konexioa babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
-msgstr ""
+msgstr "Sareko Metodoa:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
-msgstr ""
+msgstr "Erabili Expect SSH-rentzako"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
+"Sortu/Transferitu\n"
+"babeserako giltzak SSH-rentzako"
-#: ../../standalone/drakbackup_.c:1781
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
-msgstr "Transferitu"
-
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
msgstr ""
+" Transferitu \n"
+"Orain"
#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr "Giltzak dagoeneko bere tokian"
+
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Idatzi ostalariaren izena edo IPa."
-#: ../../standalone/drakbackup_.c:1791
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-"Adierazi ostalariko direktorioa\n"
-"babeskopia jartzeko."
+"Mesedez sartu direktorioa (edo modulua) babes-kopia\n"
+" ostalari honetan jartzeko."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Sartu saioa hasteko izena"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Sartu pasahitza"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Gogoratu pasahitza"
-#: ../../standalone/drakbackup_.c:1818
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
-msgstr "Ezin sartu %s erabiltzaile-izena erabilita (pasahitz okerra?)"
+msgstr "Ostalari-izena, erabiltzaile-izena eta pasahitza behar dira!"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Erabili CD/DVDROMa babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
+"Mesedez hautatu zure CD/DVD gailua\n"
+"(Sartu sakatu ezarpenak beste eremu batzutara hedatzeko.\n"
+"Eremu hau ez da beharrezkoa, formularioa betetzeko tresna bakarrik.)"
-#: ../../standalone/drakbackup_.c:1921
-#, fuzzy
-msgid "Please choose your CD/DVD media size"
-msgstr "Aukeratu CDko lekua"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Mesedez hautatu zure CD/DVD euskarri neurria"
-#: ../../standalone/drakbackup_.c:1927
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
-msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
+msgstr "Mesedez markatu saio-anitzeko CDa egiteko"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
-#: ../../standalone/drakbackup_.c:1939
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
+msgstr "Mesedez markatu zure RW eukarria ezabatu nahi baduzu (1. saioa)"
-#: ../../standalone/drakbackup_.c:1940
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
-msgstr "Transferitu"
+msgstr " Ezabatu Orain "
-#: ../../standalone/drakbackup_.c:1946
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
-msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
+msgstr "Mesedez markatu DVDR gailua erabiltzen ari bazara"
-#: ../../standalone/drakbackup_.c:1952
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
-msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
+msgstr "Mesedez markatu DVDRAM gailua erabiltzen ari bazara"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10996,36 +11248,33 @@ msgstr ""
"Adierazi CD idazgailuaren gailu-izena \n"
" adib.: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
-msgstr "Hautatu fitxategia"
+msgstr "Ez da CD gailurik definitu!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Erabili zinta babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Adierazi babeskopiarako erabiliko den gailuaren izena"
-#: ../../standalone/drakbackup_.c:2055
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
-msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
+msgstr "Mesedez markatu rebobinatzen ez den gailua erabiltzeko."
-#: ../../standalone/drakbackup_.c:2061
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
-msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
+msgstr "Mesedez markatu babes-kopia aurretik zinta ezabatu nahi baduzu."
-#: ../../standalone/drakbackup_.c:2067
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
-msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
+msgstr ""
+"Mesedez markatu babes-kopia ondoren zure zinta kanporatzea nahi baduzu."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11033,57 +11282,55 @@ msgstr ""
"Adierazi Drakbackup-en gehieneko\n"
" tamaina "
-#: ../../standalone/drakbackup_.c:2138
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
-msgstr "Adierazi gorde beharreko direktorioa:"
+msgstr "Mesedez adierazi zein direktoriotan gorde behar den:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Erabili kuota babeskopia-fitxategientzat"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Sarea"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
-msgstr ""
+msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2234
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
-msgstr "Mota"
+msgstr "Zinta"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "orduero"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "egunero"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "astero"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "hilero"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Erabili daemon-a"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11091,7 +11338,7 @@ msgstr ""
"Aukeratu babeskopiak egiteko \n"
"maiztasuna"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11099,79 +11346,83 @@ msgstr ""
"Aukeratu babeskopia \n"
"egiteko euskarria."
-#: ../../standalone/drakbackup_.c:2287
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
-msgstr "Ziurtatu cron daemon-a zerbitzuetan sartuta daukazula."
+msgstr ""
+"Mesedez ziurtatu cron deabrua zure zerbitzuen artean dagoen.\n"
+"\n"
+"Ohartu oraingoz 'sareko' euskarri guztiek disko zurruna erabiltzen dutela."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Babeskopia egindakoan, bidali berri-emateko mezua hona :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
+"Ezabatu disko zurrunetik tar fitxategiak beste euskarri batera babestu "
+"ondoren."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Zer"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Non"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Noiz"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Aukera gehiago"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr " Drakbackup-en konfigurazioa"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Aukeratu non egin nahi duzun babeskopia"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "disko gogorrean"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "sarean zehar"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
-msgstr ""
+msgstr "CDROMean"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
-msgstr ""
+msgstr "Zinta Gailuan"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Aukeratu zeren kopia egin nahi duzun"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Sistemaren babeskopia "
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Erabiltzaileen babeskopia"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Hautatu erabiltzailea eskuz"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11179,7 +11430,7 @@ msgstr ""
"\n"
"Babeskopien iturburua: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11187,7 +11438,7 @@ msgstr ""
"\n"
"- Sistema-fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11195,7 +11446,7 @@ msgstr ""
"\n"
"- Erabiltzaile-fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11203,7 +11454,7 @@ msgstr ""
"\n"
"- Bestelako fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11212,55 +11463,59 @@ msgstr ""
"\n"
"- Gorde disko gogorrean, bide-izen honetan: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
+"\n"
+"- Ezabatu disko zurrunetik tar fitxategiak babestu ondoren.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
+"\n"
+"- CD-ra erre"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
-msgstr ""
+msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2604
+#, c-format
msgid " on device: %s"
-msgstr "Sagu-gailua: %s\n"
+msgstr " gailuan: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
-msgstr ""
+msgstr " (saio-anitza)"
-#: ../../standalone/drakbackup_.c:2602
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2606
+#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- Gorde FTPan, ostalari honetan: %s\n"
+"- Gorde Zintara gailu honetan: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
-msgstr ""
+msgstr "\t\tErase=%s"
-#: ../../standalone/drakbackup_.c:2606
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2610
+#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Gorde FTPan, ostalari honetan: %s\n"
+"- Gorde %s bitartez ostalari honetan: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11269,7 +11524,7 @@ msgstr ""
"\t\t erabiltzaile-izena: %s\n"
"\t\t bide-izena: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11277,19 +11532,19 @@ msgstr ""
"\n"
"- Aukerak:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tEz sartu sistema-fitxategiak\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBabeskopietan erabili tar eta bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBabeskopietan erabili tar eta gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11298,41 +11553,39 @@ msgstr ""
"\n"
"- Daemon-ean (%s) sartzen da :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t Disko gogorra.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROMa.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
-msgstr ""
+msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\tFTP bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\tSSH bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:2623
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
-msgstr "\tFTP bidezko sarea.\n"
+msgstr "\t-Sarea rsync bitartez.\n"
-#: ../../standalone/drakbackup_.c:2624
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
-msgstr "\tFTP bidezko sarea.\n"
+msgstr "\t-Sarea webdav bitartez.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ez dago konfiguraziorik, egin klik Morroian edo Aurreratuan.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11340,7 +11593,7 @@ msgstr ""
"Leheneratu beharreko datuen zerrenda:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11348,296 +11601,291 @@ msgstr ""
"Hondatutako datuen zerrenda:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Desautatu edo kendu hurrengo aldian."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Babeskopien fitxategiak hondatuta daude"
-#: ../../standalone/drakbackup_.c:2832
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
-msgstr " Hautatu dituzun datu guztiak "
+msgstr " Hautatu dituzun datu guztiak izan dira "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " behar bezala leheneratu dira hona: %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " leheneratzeko konfigurazioa "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "Ados, leheneratu beste fitxategiak"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Leheneratzeko erabiltzaile-zerrenda (erabiltzaile bakoitzaren datu berrienak "
"bakarrik dira garrantzitsuak)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Kopiatu sistema-fitxategiak lehenago:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "aukeratu leheneratzeko data"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Erabili disko gogorra babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Adierazi gorde beharreko direktorioa:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP konexioa"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Konexio segurua"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Leheneratu disko gogorretik"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Adierazi zein direktoriotan dauden babeskopiak"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Hautatu beste euskarri bat leheneratzeko"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Beste euskarri bat"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Leheneratu sistema"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Leheneratu erabiltzaileak"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Leheneratu bestelakoak"
-#: ../../standalone/drakbackup_.c:3263
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
-msgstr "hautatu leheneratzeko bidea ( / ordez)"
+msgstr "hautatu leheneratzeko bidea (/ ordez)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Egin babeskopia berria leheneratu aurretik (inkrementaletan soilik.)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Kendu erabiltzaile-direktorioak leheneratu aurretik."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
+"Leheneratu Hautatutako\n"
+"Katalogo Sarrera"
-#: ../../standalone/drakbackup_.c:3392
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
-msgstr "Kendu hautatutakoak"
+msgstr ""
+"Leheneratu Hautatutako\n"
+"Fitxategiak"
-#: ../../standalone/drakbackup_.c:3409
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
-msgstr "Leheneratu bestelakoak"
+msgstr ""
+"Aldatu\n"
+"Leheneratze Bidea"
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:3479
+#, c-format
msgid "Backup files not found at %s."
-msgstr "Babestu %s %s.old bezala"
+msgstr "Babestu %s-n aurkitu ez diren fitxategiak."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
+"Sartu %s bolumen etiketa duen CDa\n"
+" muntaketa puntua /mnt/cdrom duen CD unitatean"
-#: ../../standalone/drakbackup_.c:3488
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
-msgstr "Leheneratu disko gogorretik"
+msgstr "Leheneratu CDtik"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
+msgstr "Ez da CD etiketa zuzena. Diskoak %s etiketa dauka."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
+"Sartu bolumen etiketa %s duen zinta\n"
+" %s zinta unitate gailuan"
-#: ../../standalone/drakbackup_.c:3500
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
-msgstr "Leheneratu partizio-taula"
+msgstr "Leheneratu Zintatik"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
+msgstr "Ez da zinta etiketa zuzena. Zinta %s etiketa dauka."
-#: ../../standalone/drakbackup_.c:3522
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
-msgstr "Leheneratu erabiltzaileak"
+msgstr "Leheneratu Sarearen Bitartez"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
-msgstr ""
+msgstr "Leheneratu Sareko Protokolo honen bitartez: %s"
-#: ../../standalone/drakbackup_.c:3523
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
-msgstr "Ostalari-izena"
+msgstr "Ostalari Izena"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
-msgstr ""
+msgstr "Ostalari Bide edo Modulua"
-#: ../../standalone/drakbackup_.c:3531
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
-msgstr "Pasahitza"
+msgstr "Pasahitza behar da"
-#: ../../standalone/drakbackup_.c:3537
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
-msgstr "Erabiltzaile-izena"
+msgstr "Erabiltzaile-izena behar da"
-#: ../../standalone/drakbackup_.c:3540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
-msgstr "Ostalari-izena: "
+msgstr "Ostalari-izena behar da"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
-msgstr ""
+msgstr "Bidea edo Modulua behar da"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
-msgstr ""
+msgstr "Fitxategiak Leheneratuta..."
-#: ../../standalone/drakbackup_.c:3561
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
-msgstr "Leheneratu bestelakoak"
+msgstr "Leheneraketak Hutsegin du..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Leheneratu babeskopia guztiak."
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Leheneratze pertsonalizatua"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
-msgstr ""
+msgstr "CDa bere lekuan - jarraitu."
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
-msgstr ""
+msgstr "Nabigatu leheneratze repositorio berrira."
-#: ../../standalone/drakbackup_.c:3863
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
-msgstr "Leheneratu partizio-taula"
+msgstr "Leheneratu Katalogotik"
-#: ../../standalone/drakbackup_.c:3891
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
-msgstr "Leheneratu erabiltzaileak"
+msgstr "Leheneratze Aurrerapena"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Aurrekoa"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gorde"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Egin babeskopia"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Leheneratu"
-#: ../../standalone/drakbackup_.c:4229
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-"Errorea posta bidaltzean\n"
-" berri emateko mezua ez da bidali\n"
-" Konfiguratu posta-bidalketa"
+"Errorea sendmail bitartez posta bidaltzean\n"
+" Berri emateko mezua ez da bidali\n"
+" Mesedez konfiguratu posta-bidalketa sendmail bitartez"
-#: ../../standalone/drakbackup_.c:4253
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "Ondorengo pakete hauek instalatuko dira"
+msgstr ""
+"Ondorengo paketeak instalatuta egon behar dira:\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-"Errorea FTP bidez fitxategia bidaltzean.\n"
-" Zuzendu FTP konfigurazioa."
+"Okerra FTP bidez fitxategia bidaltzean.\n"
+" Mesedez zuzendu zure FTP konfigurazioa."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Hautatu leheneratzeko datuak..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Hautatu babeskopiaren euskarria..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Hautatu babeskopia egiteko datuak..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11645,60 +11893,59 @@ msgstr ""
"Ez da konfigurazio-fitxategirik aurkitu \n"
"egin klik Morroia-n edo Aurreratua-n."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Garatzen... itxaron."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Sistema-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Erabiltzaile-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Bestelako fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Guztizko progresioa"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "fitxategiak FTP bidez bidaltzen"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Fitxategiak bidaltzen..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Egin babeskopia konfigurazio-fitxategitik"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Ikusi babeskopiaren konfigurazioa"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Morroiaren konfigurazioa"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Konfigurazio aurreratua"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Egin babeskopia orain"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11731,16 +11978,16 @@ msgid ""
msgstr ""
"aukeren azalpena:\n"
"\n"
-" Urrats honetan, Drakbackup-en bidez aldatuko dituzu:\n"
+" Urrats honetan Drakbackup-ek hauek aldatzen utziko dizu:\n"
"\n"
" - Konprimitze-modua:\n"
" \n"
-" bzip2 konpresioa hautatuz, gzip-ekin baino hobeto\n"
+" bzip2 konpresioa hautatuz, gzip-ekin baino gehiago\n"
" konprimituko dituzu datuak (% 2-10 inguru).\n"
" Aukera hau ez da lehenespen gisa hautatzen konpresio-modu\n"
" honek denbora gehiago (% 1000 gehiago) hartzen duelako.\n"
" \n"
-" - Eguneratze-modua:\n"
+" - Eguneratze modua:\n"
"\n"
" Aukera honek babeskopia eguneratuko du, baina ez da\n"
" oso erabilgarria, eguneratu aurretik babeskopia\n"
@@ -11748,9 +11995,9 @@ msgstr ""
" \n"
" - .backupignore modua:\n"
"\n"
-" cvs-rekin bezala, Drakbackup-ek ezikusi egingo die\n"
-" .backupignore fitxategietako erreferentzia guztiei.\n"
-" ex: \n"
+" cvs-rekin bezala, Drakbackup-ek ezikusi egingo die direktorio\n"
+" bakoitzeko .backupignore fitxategietako erreferentzia guztiei.\n"
+" adib: \n"
" /*> cat .backupignore*/\n"
" *.o\n"
" *~\n"
@@ -11758,7 +12005,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11772,7 +12019,7 @@ msgstr ""
" myhostname edo mydomain ezarri behar duzu hemen: /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11847,8 +12094,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11875,41 +12121,46 @@ msgid ""
"\n"
"\n"
msgstr ""
-"leheneratze-azalpena:\n"
+"leheneratze azalpena:\n"
" \n"
-"Data berrienak soilik erabiliko dira, babeskopia inkrementalean\n"
-"beharrezkoa delako babeskopia zaharrak banan-banan ezabatzea.\n"
+"Gertueneko data soilik erabiliko da, babeskopia inkrementalarekin\n"
+"beharrezkoa delako babeskopia zaharrak banan-banan leheneratzea.\n"
"\n"
-"Erabiltzaile bat leheneratu nahi ez baduzu, desautatu haren \n"
-"kontrol-laukia.\n"
+"Beraz erabiltzaile bat leheneratu nahi ez baduzu, haren egiaztapen-"
+"laukietatik\n"
+"markak kendu.\n"
"\n"
"Bestela, hauetako bakarra hautatu ahal izango duzu\n"
"\n"
" - Babeskopia inkrementalak:\n"
"\n"
"\tBabeskopia-aukera ahaltsuena da. Aukera honen\n"
-"\tbidez, lehen aldian datu guztien babeskopia egin\n"
-"\tdaiteke, eta gero aldatuenak bakarrik.\n"
-"\tGero, leheneratze-urratsean, data jakin bateko\n"
-"\tdatuak leheneratu ahal izango dituzu.\n"
+"\tbidez, lehen aldian datu guztien babeskopia\n"
+"\tegiteko aukera ematen du, eta gero aldatutako\n"
+"\tdatuak bakarrik.\n"
+"\tBeraz, leheneratze-urratsean, data\n"
+"\tjakin bateko datuak leheneratu ahal izango\n"
+"\tdituzu.\n"
"\tAukera hau hautatuta ez baduzu, babeskopia zahar guztiak\n"
"\tezabatzen dira babeskopia bakoitzaren aurretik. \n"
"\n"
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft, DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
+" eguneraketak 2002 MandrakeSoft Stew Benedict-ek <sbenedict\\@mandrakesoft."
+"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11939,7 +12190,7 @@ msgstr ""
" jasoko zenuen; hala ez bada, idatzi hona: Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12015,7 +12266,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12033,7 +12284,7 @@ msgstr ""
"zerbitzarira bidali aurretik.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12055,7 +12306,7 @@ msgstr ""
"Garrantzizkoa da kontuz ibiltzea eta babeskopia-fitxategiak\n"
"eskuz ez aldatzea.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12147,18 +12398,30 @@ msgid ""
"\n"
"OPTIONS:\n"
msgstr ""
+"drakbug %s bertsioa\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"Hau software askea da eta GNUren GPLk ezarritako baldintzapean banatu "
+"daiteke.\n"
+"\n"
+"erabilera: drakbug [AUKERAK] [PROGRAMA_IZENA]\n"
+"\n"
+"AUKERAK:\n"
#: ../../standalone/drakbug_.c:47
msgid " --help - print this help message.\n"
-msgstr ""
+msgstr " --help - laguntza mezu hau erakutsi.\n"
#: ../../standalone/drakbug_.c:48
msgid " --report - program should be one of mandrake tools\n"
msgstr ""
+" --report - programa mandrakeren tresnetako bat izan beharko "
+"litzateke\n"
#: ../../standalone/drakbug_.c:49
msgid " --incident - program should be one of mandrake tools\n"
msgstr ""
+" --incident - programa mandrakeren tresnetako bat izan beharko "
+"litzateke\n"
#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
@@ -12173,8 +12436,8 @@ msgid "Synchronization tool"
msgstr "Sinkronizazio tresna"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Tresna Autonomoak"
@@ -12235,12 +12498,11 @@ msgid "Release: "
msgstr "Bertsioa: "
#: ../../standalone/drakbug_.c:115
-#, fuzzy
msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12249,25 +12511,24 @@ msgstr ""
"\n"
"\n"
"Akats txosten bat bidaltzeko, klikatu txosten botoia.\n"
-"Honek web nabigatzailearen leiho batean https://www.bugzilla.com\n"
+"Honek web nabigatzailearen leiho batean https://drakbug.mandrakesoft.com\n"
" zabalduko du, bertan bete beharreko inprimakia aurkituko duzu. Gainean \n"
"erakusten den informazioa zerbitzari hartara bidaliko da\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Txostena"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Instalatu gabe"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "Bugzilla morroira konektatzen ..."
-#: ../../standalone/drakbug_.c:190
-#, fuzzy
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Ez dago nabigatzailerik! Instalatu bat mesedez"
@@ -12368,10 +12629,6 @@ msgstr "Morroia..."
msgid "Apply"
msgstr "Aplikatu"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Itxaron... Konfigurazioa aplikatzen"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Konektatuta"
@@ -12493,7 +12750,7 @@ msgstr "Modulu-izena"
msgid "Size"
msgstr "Tamaina"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12558,12 +12815,12 @@ msgstr "Irteera"
msgid "Build the disk"
msgstr "Sortu disketea"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Egiaztatu %s gailuak euskarria baduela"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12572,12 +12829,12 @@ msgstr ""
"Ez dago euskarririk edo idazketarako babestuta dago %s gailuan.\n"
"Sartu bat mesedez."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ezin da bikoiztu: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13062,159 +13319,146 @@ msgstr ""
"\n"
"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "group"
-msgstr "Lantaldea"
+msgstr "taldea"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
-msgstr ""
+msgstr "bidea"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
-msgstr "%s partizioan"
+msgstr "baimenak"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "user"
msgstr "Erabiltzailea"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
-msgstr ""
+msgstr "Gora"
-#: ../../standalone/drakperm_.c:49
-#, fuzzy
+#: ../../standalone/drakperm_.c:50
msgid "delete"
-msgstr "Ezabatu"
+msgstr "ezabatu"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
-msgstr ""
+msgstr "editatu"
-#: ../../standalone/drakperm_.c:51
-#, fuzzy
+#: ../../standalone/drakperm_.c:52
msgid "Down"
-msgstr "Eginda"
+msgstr "Bera"
-#: ../../standalone/drakperm_.c:52
-#, fuzzy
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
-msgstr "Gehitu modulua"
+msgstr "Arau bat gehitu"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
-msgstr ""
+msgstr "hautatu ikusi/editatzeko fitxategia"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
+"Drakperm fitxategien ezaugarriak aldatzeko erabiltzen da, baimenak, jabeak, "
+"eta taldeak, hori msec bitartez egiten du.\n"
+"Jatorrizko arauak gainidatziko dituzte zure arau propioak editatu ditzakezu."
-#: ../../standalone/drakperm_.c:61
-#, fuzzy
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
-msgstr "Gehitu inprimagailu berria"
+msgstr "Gehitu arau berri bat amaieran"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
-msgstr ""
+msgstr "Editatu uneko araua"
-#: ../../standalone/drakperm_.c:63
-#, fuzzy
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
-msgstr "Desautatutako guztiak"
+msgstr "Igo hautatutako araua maila bat"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
-msgstr ""
+msgstr "Jaitsi hautatutako araua maila bat"
-#: ../../standalone/drakperm_.c:65
-#, fuzzy
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
-msgstr "Kendu hautatutakoak"
+msgstr "Ezabatu hautatutako araua"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
-msgstr ""
+msgstr "arakatu"
-#: ../../standalone/drakperm_.c:248
-#, fuzzy
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
-msgstr "Onartu erabiltzailea"
+msgstr "Uneko erabiltzailea"
-#: ../../standalone/drakperm_.c:253
-#, fuzzy
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
-msgstr "Bertsioa: %s\n"
+msgstr "Baimenak"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
-msgstr ""
+msgstr "Bidea"
-#: ../../standalone/drakperm_.c:255
-#, fuzzy
+#: ../../standalone/drakperm_.c:251
msgid "Property"
-msgstr "Ataka"
+msgstr "Propietatea"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
-msgstr ""
+msgstr "bit-likatsua"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
-msgstr ""
+msgstr "Set-UID"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
-msgstr ""
+msgstr "Set-GID"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
+"Direktorioentzako erabilia:\n"
+" direktorio edo fitxategiaren jabeak bakarrik direktorio honetan ezabatu "
+"dezake"
-#: ../../standalone/drakperm_.c:315
-#, fuzzy
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
-msgstr "Erabili auto-detekzioa"
+msgstr "Erabili jabearen id exekuziorako"
-#: ../../standalone/drakperm_.c:316
-#, fuzzy
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
-msgstr "Erabili auto-detekzioa"
+msgstr "Erabili taldearen id exekuziorako"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
-msgstr ""
+msgstr "Markatuta dagoenean, jabea eta taldea ez dira aldatuko"
-#: ../../standalone/drakperm_.c:322
-#, fuzzy
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
-msgstr "Splash hautaketa"
+msgstr "Bide hautaketa"
-#: ../../standalone/drakperm_.c:368
-#, fuzzy
+#: ../../standalone/drakperm_.c:364
msgid "user :"
-msgstr "Erabiltzailea"
+msgstr "Erabiltzailea :"
-#: ../../standalone/drakperm_.c:370
-#, fuzzy
+#: ../../standalone/drakperm_.c:366
msgid "group :"
-msgstr "Lantaldea"
+msgstr "taldea :"
-#: ../../standalone/draksound_.c:46
-#, fuzzy
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
-msgstr "Ez da TB txartelik aurkitu!"
+msgstr "Ez da Soinu Txartelik aurkitu!"
-#: ../../standalone/draksound_.c:47
-#, fuzzy
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13225,149 +13469,155 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Zure makinan ez da TB txartelik aurkitu. Ziurtatu Linux-ek onartzen duen "
-"Bideo/TB txartela ondo konektatuta dagoela.\n"
+"Zure makinan ez da Soinu Txartelik aurkitu. Ziurtatu Linux-ek onartzen duen "
+"Soinu Txartela ondo konektatuta dagoela.\n"
"\n"
"\n"
-"Gure hardware datubasea bisitatu dezakezu:\n"
+"Gure hardware datubasea bisitatu dezakezu hemen:\n"
"\n"
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr "ondo ibili dadin ImageMagick paketea behar da"
+
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
-msgstr "abioko disketea sortu"
+msgstr "Lehenengo urratsaren sorrera"
-#: ../../standalone/draksplash_.c:77
-#, fuzzy
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
-msgstr "Bereizmena"
+msgstr "azken erresoluzioa"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
-#, fuzzy
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
-msgstr "Aukeratu fitxategi bat"
-
-#: ../../standalone/draksplash_.c:79
-#, fuzzy
-msgid "Theme name"
-msgstr "Konpartitze-izena"
+msgstr "aukeratu irudi fitxategia"
#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Instalazio-ondorengo konfigurazioa"
+msgid "Theme name"
+msgstr "Gaiaren izena"
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Irten"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
+msgstr "Arakatu"
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Instalatu gaiak"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
-#, fuzzy
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
-msgstr "Ezin da Bootsplash aurreikuspena sortu"
-
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
+msgstr "Abiapen-irudia konfiguratu"
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
+"testu-laukiaren x koordenatua\n"
+"karaktere kopurutan"
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
+"testu-laukiaren y koordenatua\n"
+"karaktere kopurutan"
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
-msgstr ""
+msgid "text width"
+msgstr "testu zabalera"
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr ""
+msgid "text box height"
+msgstr "testu-lauki garaiera"
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
+"aurrerapen-barraren goi eta\n"
+"ezker ertzaren x koordenatua"
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
+"aurrerapen-barraren goi eta\n"
+"ezker ertzaren y koordenatua"
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
-msgstr ""
+msgid "the width of the progress bar"
+msgstr "aurrerapen-barraren zabalera"
#: ../../standalone/draksplash_.c:107
-msgid "the color of the progress bar"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:119
-#, fuzzy
-msgid "go back"
-msgstr "Atzera-begizta"
+msgid "the heigth of the progress bar"
+msgstr "aurrerapen-barraren garaiera"
-#: ../../standalone/draksplash_.c:120
-#, fuzzy
-msgid "preview"
-msgstr "gailua"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
+msgstr "aurrerapen-barraren kolorea"
#: ../../standalone/draksplash_.c:121
-#, fuzzy
-msgid "choose color"
-msgstr "Aukeratu monitorea"
+msgid "Preview"
+msgstr "aurreikusi"
+
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "gaia gorde"
#: ../../standalone/draksplash_.c:124
-#, fuzzy
+msgid "Choose color"
+msgstr "Aukeratu kolorea"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
-msgstr "Erakutsi gaia kontsolapean"
+msgstr "Erakutsi logoa Kontsolan"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
-msgstr ""
+msgstr "Egin kernel mezua isila jatorrian"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
-msgstr ""
+msgstr "Gai honek ez dauka oraindik abiapen-irudirik %s-n!"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
-msgstr ""
+msgstr "Abiapen-irudi gaia gordetzen..."
-#: ../../standalone/draksplash_.c:436
-#, fuzzy
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
-msgstr "Inprimagailu-modeloaren hautapena"
+msgstr "AurrearpenBarraren kolore aukeraketa"
-#: ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
-msgstr "Inprimagailua/gailua aukeratu/adierazi behar duzu!"
+msgstr "Irudi fitxategi bat hautatu behar duzu lehenik!"
-#: ../../standalone/draksplash_.c:463
-#, fuzzy
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
-msgstr "Gailuak detektatzen..."
+msgstr "Aurreikuspena sortzen ..."
+
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Ezin da Bootsplash aurreikuspena sortu"
#: ../../standalone/drakxtv_.c:49
-#, fuzzy
msgid ""
"XawTV isn't installed!\n"
"\n"
@@ -13384,8 +13634,9 @@ msgstr ""
"XawTV ez dago instalatuta!\n"
"\n"
"\n"
-"TB txartela badaukazu baino DrakX-ek ez du detektatu (bttv modulurik ez\n"
-"\"/etc/modules\" kokapenean) edo xawtv ez du instalatu, mesedez bidali\n"
+"TB txartela badaukazu baino DrakX-ek ez badudu detektatu (bttv edo saa7134 "
+"modulurik ez\n"
+"\"/etc/modules\" kokapenean) ez eta xawtv instalatu ere, mesedez bidali\n"
"\"lspcidrake -v -f\"-ek sortzen duen irteera \"install\\@mandrakesoft.com\"\n"
"helbidera gai bezala \"undetected TV card\" jarrita.\n"
"\n"
@@ -13454,7 +13705,7 @@ msgstr "Argentina"
#: ../../standalone/drakxtv_.c:72
msgid "Australian Optus cable TV"
-msgstr ""
+msgstr "Australiako Optus kable TB"
#: ../../standalone/drakxtv_.c:107
msgid ""
@@ -13520,6 +13771,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"erabilera: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "erabilera: keyboarddrake [--expert] [keyboard]\n"
@@ -13548,11 +13807,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ezin da bertsio-berritzea abiarazi!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "Aldaketa egin da, baina, eragina izan dezan, saioa amaitu behar duzu"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13661,9 +13920,8 @@ msgid "Content of the file"
msgstr "Fitxategiaren edukia"
#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
-#, fuzzy
msgid "Mail alert"
-msgstr "Posta/SMSren abisua"
+msgstr "Posta alerta"
#: ../../standalone/logdrake_.c:267
#, c-format
@@ -13671,69 +13929,59 @@ msgid "please wait, parsing file: %s"
msgstr "itxaron, fitxategia analizatzen: %s"
#: ../../standalone/logdrake_.c:408
-#, fuzzy
msgid "Mail alert configuration"
-msgstr "Posta/SMSren abisuaren konfigurazioa"
+msgstr "Posta alerta konfigurazioa"
#: ../../standalone/logdrake_.c:409
-#, fuzzy
msgid ""
"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Ongi etorri Posta/SMS konfiguratzeko utilitatera.\n"
+"Ongi etorri posta konfiguratzeko utilitatera.\n"
"\n"
-"Hemen zure abisu-sistema konfiguratu ahal izango duzu.\n"
+"Hemen zure alerta sistema ezarri ahal izango duzu.\n"
#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
-msgstr ""
+msgstr "Apache World Wide Web Zerbitzaria"
#: ../../standalone/logdrake_.c:417
-#, fuzzy
msgid "Domain Name Resolver"
-msgstr "Domeinu-izena:"
+msgstr "Domeinuko Izen Ebazlea"
#: ../../standalone/logdrake_.c:418
-#, fuzzy
msgid "Ftp Server"
-msgstr "Gelditu Zerbitzaria"
+msgstr "Ftp Zerbitzaria"
#: ../../standalone/logdrake_.c:419
-#, fuzzy
msgid "Postfix Mail Server"
-msgstr "Postfix posta-zerbitzaria, Inn berri-zerbitzaria"
+msgstr "Postfix Posta Zerbitzaria"
#: ../../standalone/logdrake_.c:420
-#, fuzzy
msgid "Samba Server"
-msgstr "Abiatu Zerbitzaria"
+msgstr "Samba Zerbitzaria"
#: ../../standalone/logdrake_.c:421
-#, fuzzy
msgid "SSH Server"
-msgstr "NIS zerbitzaria"
+msgstr "SSH Zerbitzaria"
#: ../../standalone/logdrake_.c:422
-#, fuzzy
msgid "Webmin Service"
-msgstr "Zerbitzuak"
+msgstr "Webmin Zerbitzua"
#: ../../standalone/logdrake_.c:423
-#, fuzzy
msgid "Xinetd Service"
-msgstr "Inprimagailu-zerbitzaria"
+msgstr "Xinetd Zerbitzua"
#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "zerbitzuaren ezarpena"
#: ../../standalone/logdrake_.c:431
-#, fuzzy
msgid ""
"You will receive an alert if one of the selected services is no more running"
-msgstr "Hautatutako zerbitzuetakoren bat martxan ez badago, abisua jasoko duzu"
+msgstr "Alerta jasoko duzu hautatutako zerbitzuetakoren bat gelditzen bada"
#: ../../standalone/logdrake_.c:443
msgid "load setting"
@@ -13748,9 +13996,8 @@ msgid "alert configuration"
msgstr "abisu-konfigurazioa"
#: ../../standalone/logdrake_.c:458
-#, fuzzy
msgid "Please enter your email address below "
-msgstr "Sartu pasahitza"
+msgstr "Mesedez sartu zure posta-e helbidea azpian "
#: ../../standalone/logdrake_.c:497
msgid "Save as.."
@@ -13780,17 +14027,17 @@ msgstr "Probatu atakak"
#: ../../standalone/scannerdrake_.c:81
#, c-format
msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr ""
+msgstr "Mandrake Linux bertsio honek ez du %s onartzen."
#: ../../standalone/scannerdrake_.c:56
-#, fuzzy, c-format
+#, c-format
msgid "%s found on %s, configure it?"
-msgstr "%s aurkitu da hemen: %s. Konfiguratu nahi duzu ?"
+msgstr "%s aurkitu da %s-n, konfiguratu?"
#: ../../standalone/scannerdrake_.c:59
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
+msgstr "%s ez dago eskaner datubasean, eskuz konfiguratu?"
#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
@@ -13836,16 +14083,14 @@ msgstr ""
"Dokumentuak eskaneatu ditzakezu orain aplikazio menuan Multimedia/Grafikoak "
"barruan \"XSane\" erabiliz."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Zenbait gailu \"%s\" hardware motan ezabatu egin dira:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"%s motako zenbait gailu gehitu dira:\n"
@@ -13922,7 +14167,7 @@ msgstr "Instalatu sistema-eguneratzeak"
msgid "Exit install"
msgstr "Irten instalaziotik"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13976,7 +14221,7 @@ msgstr "Audio tresnak: mp3 edo midi erreproduzigailuak, nahastaileak, etab."
#: ../../share/compssUsers:999
msgid "Linux Standard Base. Third party applications support"
-msgstr ""
+msgstr "Linux Standard Base. Beste batzuren aplikazioen euskarria"
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
@@ -14138,7 +14383,7 @@ msgstr "Hainbat protokolotako bezeroak, ssh-renak barne"
#: ../../share/compssUsers:999
msgid "LSB"
-msgstr ""
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
@@ -14172,8 +14417,57 @@ msgstr "Multimedia - CD grabatzea"
msgid "Scientific Workstation"
msgstr "Lan-estazio zientifikoa"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Ezin da Bootsplash aurreikuspena sortu"
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "Akats txosten bat bidaltzeko, klikatu txosten botoia.\n"
+#~ "Honek web nabigatzailearen leiho batean https://www.bugzilla.com\n"
+#~ " zabalduko du, bertan bete beharreko inprimakia aurkituko duzu. Gainean \n"
+#~ "erakusten den informazioa zerbitzari hartara bidaliko da\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "2. urratsa, abiapen-irudia sortu"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "joan lilo-irudi konfiguraziora"
+
+#~ msgid "Go back"
+#~ msgstr "itzuli"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Ez dago OSS/ALSA gidari alternatibo ezagunik zure soinu txartelarentzako "
+#~ "(%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy-ak ftp://... izan behar du"
+
+#~ msgid "Keys in place already"
+#~ msgstr "Giltzak dagoeneko bere tokian"
+
+#~ msgid "quit"
+#~ msgstr "Irten"
+
+#~ msgid ""
+#~ "\n"
+#~ "Some devices in the %s class were added:\n"
+#~ msgstr ""
+#~ "\n"
+#~ "%s motako zenbait gailu gehitu dira:\n"
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
@@ -14447,17 +14741,6 @@ msgstr "Lan-estazio zientifikoa"
#~ "honelako konturik entzun ez baduzu, ziur aski ez zara\n"
#~ "inorekin sinkronizatuta egongo."
-#~ msgid ""
-#~ "Configuration complete. May we write these changes to disk?\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Konfigurazioa osatu da. Diskoan idatziko ditugu aldaketak?\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-
#~ msgid "Can't open %s for writing: %s\n"
#~ msgstr "Ezin da %s idazteko ireki: %s\n"
@@ -14774,21 +15057,6 @@ msgstr "Lan-estazio zientifikoa"
#~ msgid "Package List to Install"
#~ msgstr "Instalatu beharreko pakete-zerrenda"
-#~ msgid "proftpd"
-#~ msgstr "proftpd"
-
-#~ msgid "sshd"
-#~ msgstr "sshd"
-
-#~ msgid "webmin"
-#~ msgstr "webmin"
-
-#~ msgid "xinetd"
-#~ msgstr "xinetd"
-
-#~ msgid "Setting security level"
-#~ msgstr "Segurtasun-maila ezartzen"
-
#~ msgid "Select a graphics card"
#~ msgstr "Hautatu txartel grafiko bat"
@@ -14897,6 +15165,3 @@ msgstr "Lan-estazio zientifikoa"
#~ msgid "Setting security user"
#~ msgstr "Segurtasun erabiltzailea ezartzen"
-
-#~ msgid "Setting security options"
-#~ msgstr "Segurtasun aukerak ezartzen"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index 860c7f2c1..7d2edd56b 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-12-17 23:18EET\n"
"Last-Translator: Matias Griese <mahagr@utu.fi>\n"
"Language-Team: Finnish\n"
@@ -90,24 +90,24 @@ msgstr "Aseta kaikki nytt erikseen"
msgid "Use Xinerama extension"
msgstr "Kyt Xinerama-laajennusta"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Mrittele vain kortin \"%s\" (%s) asetukset"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s laitteistokiihdytetyll 3D-tuella"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,18 +117,18 @@ msgstr ""
"ssa.\n"
"Korttisi on tuettu mys XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Nytnohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s KOKEELLISELLA laitteistokiihdytetyll 3D-tuella"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -140,7 +140,7 @@ msgstr ""
"HUOMAA, ETT TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI.Korttisi on "
"tuettu mys XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,12 +149,12 @@ msgstr ""
"Nytnohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
"HUOMAA, ETT TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (nytnohjaimen ajurin asennus)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Mukautettu"
@@ -175,32 +175,32 @@ msgstr "Resoluutio"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Optiot"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Lopeta"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -298,25 +298,25 @@ msgstr "Valitse resoluutio ja vrisyvyys"
msgid "Graphics card: %s"
msgstr "Nytnohjain: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Peruuta"
@@ -393,11 +393,11 @@ msgstr "XFree86 palvelin: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ajurit: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Kynnistettess X:"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -406,7 +406,7 @@ msgstr ""
"X voidaan laittaa kynnistymn automaattisesti kynnistyksen yhteydess.\n"
"Haluatko kynnist X:n automaattisesti?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -418,7 +418,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Minklainen ISND-yhteytesi on?"
@@ -491,7 +491,7 @@ msgstr "Tiivis"
msgid "compact"
msgstr "tiivis"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Nytttila"
@@ -499,17 +499,17 @@ msgstr "Nytttila"
msgid "Delay before booting default image"
msgstr "Tauko ennen oletusjrjestelmn kynnistyst"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Salasana"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
@@ -544,14 +544,14 @@ msgid ""
msgstr ""
"Asetus ``Rajoita komentorivioptioita'' ei ole hydyllinen ilman salasanaa"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Yrit uudelleen"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Salasanat poikkeavat toisistaan"
@@ -588,7 +588,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -596,155 +596,155 @@ msgstr ""
"Tss ovat asetustietueet.\n"
"Voit list uusia tai muuttaa olemassaolevia."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Lis"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Valmis"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Muokkaa"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Mink tyyppisen tietueen haluat list"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Muu kyttjrjestelm (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Muu kyttjrjestelm (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Muu kyttjrjestelm (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Kuva"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Juuri"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Liit"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Luku-kirjoitus"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Taulukko"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Turvaton"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Otsikko"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Oletus"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd:n koko"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Ei Nytt"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Poista tietue"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Tyhj otsikkoa ei sallita"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Sinun tytyy mritell ydin"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Sinulla tytyy mritell juuriosio"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Otsikko on jo kytss"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Lysin %s %s liitnnt"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Onko sinulla muita?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Onko koneessa %s liitynt?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Kyll"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Katso laitteistotietoja"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Asetan ajuria %s ohjaimelle %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(moduli %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -755,17 +755,17 @@ msgstr ""
"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
"Esimerkiksi, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Moduulin optiot:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Mit %s-ajuria kokeillaan?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -781,15 +781,15 @@ msgstr ""
"lismreit vai annatko sen itse etsi tarvitsemansa tiedot? Joskus haku\n"
"voi jumittaa tietokoneen, mutta se ei aiheuta vahinkoa."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Automaattihaku"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Lisasetukset"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -798,65 +798,65 @@ msgstr ""
"Modulin %s lataaminen eponnistui.\n"
"Haluatko yritt muilla asetuksilla?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "oikeudet X-ohjelmille"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "oikeudet rpm-tykaluihin"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "salli \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "oikeudet yllpidollisiin tiedostoihin"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "oikeudet rpm-tykaluihin"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "oikeudet rpm-tykaluihin"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(listty jo %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Salasana on liian yksinkertainen"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Anna kyttjtunnus"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Kyttjtunnus saa sislt vain pieni kirjaimia, numeroita, `-' ja `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Kyttjtunnus on jo listty"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Kyttjtunnus on jo listty"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Lis kyttj"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +865,32 @@ msgstr ""
"Lis kyttj\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Hyvksy kyttj"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Oikea nimi"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Kyttjtunnus"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Komentotulkki"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Kuvake"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Automaattinen kirjautuminen"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -899,55 +899,55 @@ msgstr ""
"tietokoneellesi.\n"
"Haluatko kytt tt ominaisuutta?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Valitse oletuskyttj:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Valitse kytettv ikkunointijrjestelm:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Valitse kytettv kieli."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Voit valita kielet jotka ovat kytettviss asennuksen jlkeen"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Kaikki"
# Asennuksen sivuvalikko
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Salli kaikille kyttjille"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Ei jaettu"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paketti %s pit asentaa. Haluatko asentaa sen?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Voit jakaa sek NFS:ll ett Samballa. Kumpaa haluat kytt"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pakollinen paketti %s puuttuu"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -956,42 +956,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Tervetuloa murtautujat"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Huono"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standardi"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Korkea"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Korkea"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoidi"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1003,14 +1003,14 @@ msgstr ""
"koneisiin\n"
"tai Internettiin. Koneessa ei ole salasanoja."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasanat ovat nyt kytss mutta koneen kytt verkossa ei ole suositeltua."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1020,13 +1020,13 @@ msgstr ""
"kytetn Internettiin liitettyn. Jrjestelmss on "
"turvallisuustarkastuksia."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1040,7 +1040,7 @@ msgstr ""
"Jrjestelm voidaan kytt palvelimena joka hyvksyy yhteyksi monilta\n"
"asiakkailta. "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1048,36 +1048,36 @@ msgstr ""
"Pohjautuu edelliseen tasoon, mutta jrjestelm on kokonaan suljettu.\n"
"Turvallisuusasetukset ovat tiukimmillaan."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Optiot"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Valitse turvataso"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Turvataso"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Kyt libsafea palvelimille"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Kirjasto joka suojelee puskurin ylivuoto ja merkkijonon muotovirhehykkyksi "
"vastaan."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1090,7 +1090,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1115,7 +1115,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
@@ -1129,7 +1129,7 @@ msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Kayt~^D %c- ja %c-napp~^Dimi~^D valitaksesi korostetun tietueen"
@@ -1144,7 +1144,7 @@ msgstr "Kayt~^D %c- ja %c-napp~^Dimi~^D valitaksesi korostetun tietueen"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Paina enter kaynnist~^D~^Dksesi valitun kayttjrjestelmn, 'e' muokataksesi"
@@ -1159,7 +1159,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "komennot ennen kynnistyst, tai 'c' komentoriville"
@@ -1173,33 +1173,33 @@ msgstr "komennot ennen kynnistyst, tai 'c' komentoriville"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Korostettu tietue kynnistetn automaattisesti %d sekunnissa."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "ei tarpeeksi tilaa /boot-hakemistossa"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Typyt"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Kynnistysvalikko"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Et voi asentaa kyttjrjestelmn lataajaa partitiolle %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "ohjeita ei ole viel olemassa.\n"
@@ -1252,106 +1252,106 @@ msgid "Yaboot mode"
msgstr "Yaboot-tila"
# Asennuksen sivuvalikko
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Asenna jrjestelm"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Luo uusi osio"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Virhe"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Kopioidaan %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "Ei Nytt"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Asennuksen luokka"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1360,22 +1360,22 @@ msgstr ""
"Tll hetkell kytss oleva jrjestelmlataaja on %s.\n"
"Valitse Aseta kynnistksesi asennusohjelman."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Mrittele"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Yksittisten pakettien valinta"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1384,44 +1384,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Jrjestelmn tila"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Kyt X-Window-jrjestelm"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ei, en halua autologinia"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Kyll, haluan autologinin (kyttj, ymprist)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Ok"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ei voi lukea tiedostoa /etc/inittab: %s"
@@ -1518,54 +1518,62 @@ msgstr "Itvalta"
msgid "United States"
msgstr "Yhdysvallat"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "uusi"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Irroita"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Liit"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Palvelin"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Liitospaikka"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Valitse kirjoittavan CD-aseman nopeus"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Web-osoitteen tulee alkaa etuliitteell 'http:'"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Palvelin"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Liitospaikka: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Optiot: %s"
@@ -1655,7 +1663,7 @@ msgstr "Tyhj"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Muut"
@@ -1798,7 +1806,7 @@ msgstr ""
"Osiotaulun varmuuskopio ei ole saman kokoinen\n"
"Jatka silti?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Varoitus"
@@ -2358,7 +2366,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Kyttjtunnus"
@@ -2372,23 +2380,23 @@ msgstr "NIS-alue"
msgid "Search servers"
msgstr "Hae palvelimet"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s:n alustus %s:ta eponnistui"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "en osaa alustaa %s: tyyppi %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "virhe irroitettaessa %s: %s"
@@ -2475,47 +2483,110 @@ msgstr "Ei mitn tekemist"
msgid "Error opening %s for writing: %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Asetustykalut"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Ajurit"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Apua"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Odota hetki... Otetaan asetukset kyttn"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Odota hetki"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Tuntematon malli"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2642,7 +2713,8 @@ msgid "/_Quit"
msgstr "Lopeta"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ohje"
@@ -2662,77 +2734,78 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Ohje/_Tietoja..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Automaattihaku"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kiintolevyjen tunnistus"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Katso laitteistotietoja"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Nyt tiedot"
# Asennuksen sivuvalikko
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Hiiren mrittely"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "lydetty portista %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Odota hetki"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Poistetaan tulostin \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekuntia"
@@ -4222,7 +4295,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Sinun tytyy mys alustaa %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4247,7 +4320,7 @@ msgstr ""
"\n"
"Haluatko todella asentaa nm palvelimet?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4256,20 +4329,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Aseta tyhj FAT-alustettu levyke levyasemaan %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Tm levyke ei ole FAT-alustettu"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4277,12 +4350,12 @@ msgstr ""
"Kyttksesi tt \"tallennetut paketit\" valintaa, kynnist asennus "
"optiolla \"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Virhe lukiessa tiedostoa %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4527,7 +4600,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Tervetuloa %s:n"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ei levykeasemaa kytettviss"
@@ -4558,11 +4631,11 @@ msgstr "Asennusluokka"
msgid "Please choose one of the following classes of installation:"
msgstr "Valitse yksi seuraavista asennusluokista:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Pakettiryhmien valinta"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Yksittisten pakettien valinta"
@@ -4641,7 +4714,7 @@ msgstr "Nyt automaattisesti valitut paketit"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Asenna"
@@ -4662,7 +4735,7 @@ msgstr "Minimaalinen asennus"
msgid "Choose the packages you want to install"
msgstr "Valitse asennettavat paketit"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Asennan"
@@ -4689,17 +4762,17 @@ msgid "Installing package %s"
msgstr "Asennan pakettia %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Hyvksy"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Hylk"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4715,16 +4788,16 @@ msgstr ""
"levylt."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Jatka kuitenkin?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Tapahtu virhe jrjestettess paketteja:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Tapahtu virhe asennettaessa paketteja:"
@@ -4851,7 +4924,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4929,7 +5002,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Nppimist"
@@ -5138,11 +5211,11 @@ msgstr "Aseta levyke, jossa on pakettien valinta"
msgid "Selected size is larger than available space"
msgstr "Valittu koko on suurempi kuin olemassa oleva levytila"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Asennuksen tyyppi"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5150,19 +5223,19 @@ msgstr ""
"Et ole valinnut yhtkn pakettiryhm\n"
"Valitse haluamasti minimaalinen asennus"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "X:ll"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Perusdokumentaation kanssa (suositeltu!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Pienin mahdollinen asennus (erityisesti ei urpmia)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5172,16 +5245,16 @@ msgstr ""
"Jos sinulla ei ole mitn levyist, paina Peruuta.\n"
"Jos jotkut levyist puuttuvat, poista niiden valinnat, ja paina OK."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom nimeltn \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Valmistelen asennusta"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5190,22 +5263,22 @@ msgstr ""
"Asennan pakettia %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Asennuksen jlkeiset toiminnot"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Aseta kyttmsi kynnistyslevyke asemaan %s"
# mat
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Aseta moduulien pivityslevyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5281,7 +5354,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5301,161 +5374,161 @@ msgstr ""
"\n"
"Haluatko asentaa pivitykset ?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Otan yhteytt Mandrake Linuxin sivustolle saadakseni listan olemassaolevista "
"peileist"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Valitse peilijrjestelm josta paketit haetaan"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Yhdistn peilijrjestelmn hakeakseni uusimman pakettilistan"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Mik on jrjestelmsi aikavyhyke?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Laitteistokello asetettu GMT-aikaan"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automaattinen kellon synkronisointi (kytten NTP:t)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP-palvelin"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Ei kirjoitinta"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Onko sinulla muita?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Johtopts"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Hiiri"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Aikavyhyke"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Kirjoitin"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN-kortti"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "nikortti"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-kortti"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Hae Windowsin kirjasimet"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Paikalliset tiedostot"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Yllpitjn salasana"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Ei salasanaa"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Salasana on liian yksinkertainen (sen tulee olla ainakin %d merkki pitk)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tunnistustapa"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Tunnistus LDAPilla"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP perus-dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP-palvelin"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Tunnistus NIS:ll"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS-alue"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS-palvelin"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5471,21 +5544,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Tunnistus LDAPilla"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Verkkoalueen nimi"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5512,19 +5585,19 @@ msgstr ""
"Jos haluat luoda kynnistyslevykkeen jrjestelmsi, aseta levyke\n"
"ensimmiseen asemaan ja paina \"Ok\","
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Ensimminen levyasema"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Toinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ohita"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5549,7 +5622,7 @@ msgstr ""
"Haluatko luoda kynnistyslevykkeen jrjestelmsi?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5558,28 +5631,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Levyajuria ei ole saatavilla"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Valitse levyasema jolla luot kynnistyslevykkeen"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Aseta levyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Luon kynnistyslevykett"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Valmistelen kyttjrjestelmn lataajaa"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5591,11 +5664,11 @@ msgstr ""
"Asennus jatkuu, mutta sinun tytyy kytt BootX:\n"
"koneesi kynnistmiseen"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Haluatko kytt aboot:ia?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5604,15 +5677,15 @@ msgstr ""
"yrit pakkoasennusta vaikka se tuhoaa ensimmisen osion?"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Asennan kyttjrjestelmn lataajaa"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Jrjestelmlataajan asennus eponnistu. Seuraava virhe tapahtui:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5632,17 +5705,17 @@ msgstr ""
"komentokehoite."
# mat
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Aseta tyhj levyke levyasemaan %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Valmistelen automaattiasennuslevykett"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5652,7 +5725,7 @@ msgstr ""
"\n"
"Haluatko todella lopettaa?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5685,15 +5758,15 @@ msgstr ""
"Jrjestelmn asettamisesta saat tietoja virallisen Linux Mandraken\n"
"kyttjoppaan jlkiasennuskappaleesta."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Valmistelen automaattista asennuslevykett"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5707,15 +5780,15 @@ msgstr ""
"\n"
"Ehk haluat mieluummin toistaa asennuksen.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automaattinen"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Toista"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Yksittisten pakettien valinta"
@@ -5751,14 +5824,14 @@ msgstr "Lisasetukset"
msgid "Basic"
msgstr "Perusasetukset"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Edellinen"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Seuraava"
@@ -6209,7 +6282,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Rengasmaisia liitoksia %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Poista loogiset osiot ensin\n"
@@ -6348,15 +6421,15 @@ msgstr "ei mikn"
msgid "No mouse"
msgstr "Ei hiirt"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Testaa hiiri"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Aktivoidaksesi hiiren,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "PYRIT HIIREN RULLAA!"
@@ -6393,11 +6466,11 @@ msgstr "Sulje puu"
msgid "Toggle between flat and group sorted"
msgstr "Vaihda tasaisen ja ryhmjrjestyksen vlill"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ota yhteys internettiin"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6407,23 +6480,19 @@ msgstr ""
"Jotkin yhteydet kyttvt pptp:t, muutamat dhcp:t.\n"
"Jos et tied, mit valita, valitse 'kyt pppoe:a'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "kyt dhpc:t"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "kyt pppoe:a"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "kyt pptp:t"
@@ -6524,7 +6593,7 @@ msgstr "Valitse mit verkkokorteista haluat kytt internetiin liittymiseen"
msgid "no network card found"
msgstr "verkkokorttia ei lytynyt"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Asetan verkkoa"
@@ -6540,15 +6609,15 @@ msgstr ""
"Koneesi nimen pitisi olla tysin laillinen nimi, kuten\n"
"\" minunkone.omapaikka.net\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Koneen nimi"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Verkkoasetusten velho"
@@ -6595,8 +6664,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Vanha kokoonpano (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN:n asetus"
@@ -6632,23 +6701,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Mit protokollaa haluat kytt?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Millainen kortti sinulla on?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "En tied"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6661,19 +6735,19 @@ msgstr ""
"\n"
"Jos sinulla on PCMIA-kortti sinun tytyy tiet korttisi IRQ ja IO.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Hylk"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Jatka"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Mik ISDN-kortti sinulla on?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6681,7 +6755,7 @@ msgstr ""
"Olen havainnut ISDN PCI-kortin, mutta en tunnista tyyppi. Valitseyksi "
"seuraavassa ruudussa olevista korteista."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "ISDN PCI-korttia ei lydetty. Valitse yksi seuraavasta ruudusta."
@@ -6733,7 +6807,7 @@ msgstr "Ensimminen nimipalvelin (ei pakollinen)"
msgid "Second DNS Server (optional)"
msgstr "Toinen nimipalvelin (ei pakollinen)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6741,7 +6815,7 @@ msgstr ""
"\n"
"Voit joko katkaista yhteyden tai asettaa sen uudelleen."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6749,11 +6823,11 @@ msgstr ""
"\n"
"Voit asettaa yhteytesi uudelleen."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Olet parasta aikaa yhteydess internettiin."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6761,33 +6835,33 @@ msgstr ""
"\n"
"Voit joko ottaa yhteyden internettiin tai asettaa yhteyden uudelleen."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Et ole juuri nyt yhteydess internettiin."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Ota yhteys"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Katkaise yhteys"
# Asennuksen sivuvalikko
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Aseta verkkoyhteys"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetyhteyden muodostus ja asetukset"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Asetamme seuraavaksi %s-yhteyden."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6806,12 +6880,12 @@ msgstr ""
"\n"
"Paina Ok jatkaaksesi."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Verkon asetukset"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6823,7 +6897,7 @@ msgstr ""
"Paina Ok silyttksesi nykyiset asetukset tai peruuta asettaaksesi "
"internet- ja verkkoasetukset uudelleen.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6835,72 +6909,72 @@ msgstr ""
"Seuraavassa vaiheessa mritelln sinun internet- / verkkoasetukset.\n"
"Jos et halua kytt automaattista tunnistusta, poista kyseinen valinta.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Valitse uusi asetusprofiili"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Kyt automaattista tunnistusta"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Asiantuntijatila"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Etsin laitteita...."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Tavallinen modeemiyhteys"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "lydetty portista %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN-yhteys"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "lydetty %s:sta"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL-yhteys"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "lydetty seuraavasta liitnnst: %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kaapeliyhteys"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kaapeliyhteys havaittu"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Lhiverkko"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "seuraavat ethernet-verkkokortit lydetty"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Valitse yhteys, jonka haluat asettaa"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6910,23 +6984,23 @@ msgstr ""
"Valitse se, jota haluat kytt.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internetyhteys"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Haluatko ottaa yhteyden koneen kynnistyksen yhteydess?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Verkon asetukset"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Verkko pit kynnist uudelleen"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6937,7 +7011,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6947,7 +7021,7 @@ msgstr ""
"\n"
"Asetukset tulevat kyttn mys itse jrjestelmss.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6955,7 +7029,7 @@ msgstr ""
"Kun tm on tehty, suosittelemme kynnistmn X-ympristn\n"
"uudelleen vlttksesi jrjestelmn nimen vaihdoksesta tulevat ongelmat."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -6965,7 +7039,7 @@ msgstr ""
"Testaa yhteytesi net_monitor- tai mcc-tykalulla. Jos yhteytesi ei toimi, "
"voit kynnist asetustykalun uudelleen"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6976,7 +7050,7 @@ msgstr ""
"Hyvksy, jos haluat pit laitteen asetukset sellaisina, kun ne olivat.\n"
"Alla olevien kohtien muokkaaminen korvaa voimassa olevat asetukset."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6985,43 +7059,43 @@ msgstr ""
"Anna koneen IP-asetukset. Kukin kohta tulee sytt IP-osoitteena,\n"
"pisteill eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Asetan verkkolaitetta %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (ajuri %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-osoite"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Verkkopeite"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automaattinen IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Kynnistetty koneen kynnistmisen yhteydess"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7032,42 +7106,53 @@ msgstr ""
"Koneesi nimen pitisi olla tydellinen, kuten ``minunkone.yritys.fi''.\n"
"Voit antaa mys yhdyskytvn IP-osoitteen jos sinulla on sellainen."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Nimipalvelin"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Yhdyskytv (esim. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Yhdyskytvn laite"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Proxyjen asettaminen"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP-vlityspalvelin:"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP-vlityspalvelin:"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Selvit verkkokortti-id (hydyllist sylimikroille)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Vlityspalvelimen tulee olla muotoa http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Vlityspalvelimen tulee olla muotoa ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Web-osoitteen tulee alkaa etuliitteell 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8457,7 +8542,7 @@ msgstr "Tulostus kynniss tulostimella \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8948,11 +9033,6 @@ msgstr ""
"Tyt ftp-proxyn tiedot\n"
"Jt kohta tyhjksi, jos et haluat ftp-proxy"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Web-osoitteen tulee alkaa etuliitteell 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9000,6 +9080,43 @@ msgstr "mkraid eponnistui (ehk raid-tykalut puuttuvat?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei riittvsti osioita RAID tasolle %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Turvataso"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Turvataso"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Ethallinta"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Oletus)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Asetan turvatasoa"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Valmistelen asennusta"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Kynnist ALSA (Advanced Linux Sound Architecture) nijrjestelm"
@@ -9304,7 +9421,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Tiedostojen jako"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Jrjestelm"
@@ -9394,7 +9511,7 @@ msgstr "Ota yhteys internettiin"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9439,7 +9556,7 @@ msgstr "Kyttliittymt"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9464,7 +9581,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9480,7 +9597,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9495,7 +9612,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9544,8 +9661,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9581,11 +9698,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Asennan paketteja..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Kirjaudu ulos ja kirjoita sitten Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
@@ -9633,16 +9750,6 @@ msgstr "Lis kyttj"
msgid "Add/Del Clients"
msgstr "DHCP-asiakas"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Apua"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9695,53 +9802,68 @@ msgstr "Lis kyttj"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP-asiakas"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Mrittelen..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Siirr tulostimen asetukset"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "aseta uudelleen"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Aseta kyttmsi kynnistyslevyke asemaan %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ei levykeasemaa kytettviss"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9880,13 +10002,13 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9895,41 +10017,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Ei salasanaa"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "En voi avata %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9940,65 +10062,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Varmuuskopioi jrjestelmtiedostot..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Kiintolevyn varmuuskopiotiedostot..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Varmuuskopioi kyttjtiedostot..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Kiintolevyn varmuuskopion edistyminen..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Varmuuskopioi muut tiedostot..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Kyt nauhaa varmuuskopioinnissa"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10006,7 +10128,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10015,7 +10137,7 @@ msgstr ""
"tiedostolistan lhetti FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
#, fuzzy
msgid ""
"\n"
@@ -10025,39 +10147,39 @@ msgstr ""
"\n"
"(!) FTP-yhteysongelma: varmuuskopion lhettminen FTPn kautta eponnistui.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Virhe lhetettess shkpostia. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Tiedostojen valinta"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Valitse tiedostot tai hakemistot ja klikkaa 'Lis'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10065,27 +10187,27 @@ msgstr ""
"\n"
"Valitse kaikki asetukset, jotka tarvitset.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Naill asetuksilla voit varmuuskopioida ja palauttaa kaikki tiedostot /etc-"
"hakemistosta.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Varmuuskopioi systeemitiedostot ( /etc-hakemisto )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Kyt kasvavaa varmuuskopiointia (l korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "l sisllyt kriittisi tiedostoja (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10093,65 +10215,67 @@ msgstr ""
"Tll valitsimella voit palauttaa mink tahansa version\n"
"/etc-hakemistostasi."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Valitse kaikki ne kyttjt, jotka haluat sisllytt varmuuskopioosi."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "l sisllyt selaimen vlimuistia"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Kyt kasvavia varmuuskopitoita (l korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Poista valitut"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Kyttjt"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Kyt FTP-yhteytt varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Siirr"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Syt verkkoaseman nimi tai IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10160,68 +10284,68 @@ msgstr ""
"Syt hakemisto, johon tmn\n"
"koneen varmuuskopio laitetaan."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Syt kyttjtunnuksesi"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Syt salasanasi"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Muista tm salasana"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Kyt CD/DVD-ROM -levy varmuuskopioille"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Valitse kytettv CD:n koko"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Valitse, jos kytt CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Valitse, jos kytt CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Valitse, jos haluat tyhjent CD-RW:n ennen kopiointia"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Siirr"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Valitse, jos kytt CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Valitse, jos kytt CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10229,36 +10353,36 @@ msgstr ""
"Syt kirjoittavan CD-asemasi laitenimi\n"
"esim: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Valitse tiedosto"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Kyt nauhaa varmuuskopioinnissa"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Syt varmuuskopioinnissa kytettvn laitteen nimi"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Valitse, jos haluat tyhjent CD-RW:n ennen kopiointia"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Valitse, jos haluat tyhjent CD-RW:n ennen kopiointia"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Valitse, jos haluat tyhjent CD-RW:n ennen kopiointia"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10266,57 +10390,57 @@ msgstr ""
"Syt suurin sallittu koko\n"
"Drakbackup-varmuuskopiolle"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Syt hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Kyt quotaa varmuuskopiotiedostoille."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Verkko"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Kiintolevy / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tyyppi"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "tunneittain"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "pivittin"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "viikoittain"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "kuukausittain"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Kyt daemonia"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10324,7 +10448,7 @@ msgstr ""
"Valitse perkkisten\n"
"varmuuskopioiden aikavli"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10332,7 +10456,7 @@ msgstr ""
"Valitse varmuuskopiointiin\n"
"kytettv media."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10340,72 +10464,72 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Varmista ett cron-daemon on mukana kytss olevissa palveluissa."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Lhet raportti jokaisesta varmuuskopiosta shkpostitse :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Mit"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Miss"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Koska"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Lisvalinnat"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Drakbackup-asetukset"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Valitse, mihin haluat tehd varmuuskopiot"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "kiintolevylle"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "verkon yli"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Valitse mit haluat varmuuskopioida"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Varmuuskopioi jrjestelm"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Varmuuskopioi kyttjt"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Valitse kyttjt yksitellen"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -10413,7 +10537,7 @@ msgstr ""
"\n"
"Varmuuskopion lhteet: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -10421,7 +10545,7 @@ msgstr ""
"\n"
"- Jrjestelmtiedostot:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -10429,7 +10553,7 @@ msgstr ""
"\n"
"- Kyttjtiedostot:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -10437,7 +10561,7 @@ msgstr ""
"\n"
"- Muut tiedostot:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -10446,32 +10570,32 @@ msgstr ""
"\n"
"- Tallenna kiintolevylle polulle: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Hiiren laite: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -10480,12 +10604,12 @@ msgstr ""
"\n"
"- Tallenna FTP:ll verkkoasemalle: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -10494,7 +10618,7 @@ msgstr ""
"\n"
"- Tallenna FTP:ll verkkoasemalle: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10503,7 +10627,7 @@ msgstr ""
"\t\t kyttjtunnus: %s\n"
"\t\t polulla: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -10511,19 +10635,19 @@ msgstr ""
"\n"
"- Valitsimet:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tl sisllyt jrjestelmtiedostoja\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tVarmuuskopiot kyttvt: tar ja bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tVarmuuskopiot kyttvt: tar ja gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -10532,41 +10656,41 @@ msgstr ""
"\n"
"- Daemon (%s) sislt :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Kiintolevy.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Verkkoon kytten FTP:t.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Verkkoon kytten SSH:ta.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Verkkoon kytten FTP:t.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Verkkoon kytten FTP:t.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ei asetettu, valitse Velho tai Edistynyt.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -10574,7 +10698,7 @@ msgstr ""
"Lista palautettavista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10582,259 +10706,259 @@ msgstr ""
"Lista vahingoittuneista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Poista valinta tai poista se seuraavalla kerralla."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Varmuuskopiot ovat vahingoittuneet"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr " Kaikki valitsemasi tieto on "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " onnistuneesti palautettu paikkaan %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Palauta asetukset "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "Ok palauttaakseen muut tiedostot."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Palautettava kyttjlista (vain uusin piv kutakin kyttj kohti on "
"trke)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Tee jrjestelmtiedostoista varmuuskopio ennen:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Valitse pivmr, johon tiedon palauttaminen tehdn"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Kyt kiintolevy varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Syt hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP-yhteys"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Salattu yhteys"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Palauta kiintolevylt."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Anna hakemisto, johon varmuuskopiot on tallennettu"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Valitse toinen media, josta palauttaa"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Muu media"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Palauta jrjestelm"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Palauta kyttjt"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Palauta muut"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "valitse polku, josta palautat (juurihakemiston sijaan)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Tee uusi varmuuskopio ennen palauttamista (vain kasvavilla varmuuskopioilla)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Poista kyttjien hakemistot ennen palauttamista."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Poista valitut"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Palauta muut"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Varmuuskopiot ovat vahingoittuneet"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Palauta kiintolevylt."
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Palauta osiotaulu"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Palauta kyttjt"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Koneen nimi"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Salasana"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Kyttjtunnus"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Koneen nimi:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Palauta muut"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Palauta kaikki varmuuskopiot"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Mukautettu palautus"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Palauta osiotaulu"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Palauta kyttjt"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Edellinen"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Tallenna"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Tee varmuuskopio"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Palauta"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -10845,14 +10969,14 @@ msgstr ""
" raporttipostiasi ei lhetetty\n"
" Konfiguroi sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Seuraavat paketit asennetaan"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10861,19 +10985,19 @@ msgstr ""
"Virhe FTP-siirron aikana.\n"
" Korjaa FTP-asetuksesi."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Valitse palautettava tieto..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Valitse varmuuskopioinnissa kytettv media..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Valitse varmuuskopioitava tieto..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10881,60 +11005,60 @@ msgstr ""
"Asetustiedostoa ei lytynyt\n"
"valitse joko Velho tai Kehittynyt."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Kehityksen alla ... odota."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Varmuuskopioi jrjestelmtiedostot"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Varmuuskopioi kyttjtiedostot"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Varmuuskopioi muut tiedostot"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "tiedostoja lhetetn FTP:n yli"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Lhetn tiedostoja..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Tee heti asetustiedoston varmuuskopio"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Nyt varmuuskopioinnin asetukset."
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Varmuuskopioi heti"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10966,7 +11090,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10975,7 +11099,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11016,7 +11140,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11044,19 +11168,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft. Tekij: DUPONT Sebastien <dupont_s\\@epita."
"fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11073,7 +11197,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11113,7 +11237,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11124,7 +11248,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11137,7 +11261,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11219,8 +11343,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Komentorivitykalut"
@@ -11297,29 +11421,29 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "portti"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Poistamisen jlkeiset toiminnot"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Kuvankaappaukset lytyvt asennuksen jlkeen hakemistosta %s"
@@ -11420,10 +11544,6 @@ msgstr "Velho..."
msgid "Apply"
msgstr "Toteuta"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Odota hetki... Otetaan asetukset kyttn"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Yhteys muodostettu"
@@ -11545,7 +11665,7 @@ msgstr "Moduulin nimi"
msgid "Size"
msgstr "Koko"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11610,12 +11730,12 @@ msgstr "Tuloste"
msgid "Build the disk"
msgstr "Muodosta levy"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Varmista, ett media on laitteessa %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11624,12 +11744,12 @@ msgstr ""
"Laitteessa %s ei ole mediaa.\n"
"Aseta media."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Prosessia %s ei voitu haarauttaa"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12118,158 +12238,158 @@ msgstr ""
"\n"
"Paina Aseta kynnistksesi asennusohjelman."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Tyryhm"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "osio %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Kyttj"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Poista"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Valmis"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Lis moduuli"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Lis uusi tulostin"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Poista valinta kaikista"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Poista valitut"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Hyvksy kyttj"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versio: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Portti"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Kyt automaattista tunnistusta"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Kyt automaattista tunnistusta"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Yksittisten pakettien valinta"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Kyttj"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Tyryhm"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Ei yhteytt"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12281,138 +12401,148 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "kynnistyslevykkeen luonti"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resoluutio"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Valitse tiedosto"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Jakonimi"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Asennuksen jlkeiset toiminnot"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Lopeta"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Asenna jrjestelm"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Palvelujen asettaminen"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "laite"
-#: ../../standalone/draksplash_.c:120
+# Asennuksen sivuvalikko
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "laite"
+msgid "Save theme"
+msgstr "Asenna jrjestelm"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Valitse monitori"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Tulostimen mallin valinta"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Sinun tytyy valita tai sytt tulostinlaite!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Etsin laitteita ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12553,6 +12683,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "kytt: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "kytt: keyboarddrake [--expert] [keyboard]\n"
@@ -12581,11 +12718,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Jrjestelmn pivityst ei voida aloittaa!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12863,16 +13000,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
# Asennuksen sivuvalikko
@@ -12960,7 +13094,7 @@ msgstr "Asenna pivitykset"
msgid "Exit install"
msgstr "Lopeta asennus"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13208,6 +13342,21 @@ msgstr "Multimedia - CD:n poltto"
msgid "Scientific Workstation"
msgstr "Tieteelliinen tyasema"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Asennuksen jlkeiset toiminnot"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Vlityspalvelimen tulee olla muotoa ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Lopeta"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -13588,9 +13737,6 @@ msgstr "Tieteelliinen tyasema"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "Asetan turvatasoa"
-
#~ msgid "Select a graphics card"
#~ msgstr "Valitse nytnohjain"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index 7317fbef3..7dae638c7 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-08-24 12:00-0000\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Irish <ga@li.org>\n"
@@ -86,41 +86,41 @@ msgstr "Cumraigh gach cinn ar leith"
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Cumraigh carta \"%s\" (%s) amhain"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "Freastala XFree86: %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s le luadghear crua-earra 3D"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "Freastala XFree %s le luasghear crua-earra 3D TRIALACH"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -128,19 +128,19 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Socraithe"
@@ -161,32 +161,32 @@ msgstr "Riteach"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Roghnachais"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ceart go Leor"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "alaigh"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, fuzzy, c-format
msgid ""
"Keep the changes?\n"
@@ -271,25 +271,25 @@ msgstr "Roghnaigh Riteach agus an mid dath"
msgid "Graphics card: %s"
msgstr "Carta Grafach: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Cealaigh"
@@ -365,11 +365,11 @@ msgstr "Freastala XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Tiomna XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X ag ts"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -378,7 +378,7 @@ msgstr ""
"Is fidir linn do romhaire a shocr le X a thosn i ndhiadh bootil.\n"
"An dteastaonn uait go dtosnfar X nuair a aththosntear an romhaire?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -390,7 +390,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr ""
@@ -462,7 +462,7 @@ msgstr "Compact"
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Md fs"
@@ -470,17 +470,17 @@ msgstr "Md fs"
msgid "Delay before booting default image"
msgstr ""
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasfhocal"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Pasfhocal (ars)"
@@ -514,14 +514,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Aththrialaigh"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "N mar a chile na pasfhocail"
@@ -558,162 +558,162 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Suim"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Crochnithe"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Athraigh"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Cn sort iontril a suimigh do"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "CO Eile (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "CO Eile (MunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "CO Eile (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Iomha"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lamh-Scrobh"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Table"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Baolach"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Lipad"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Gnth"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Mid-Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "GanBhide"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Scrios iontril"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Nl ceadaigh an lipad folamh ann"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Nl aon ranna agat!"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Is ann cheana don ainm sideora seo"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fuair %s %s comhadan"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "An bhfuil comhadan %s agat?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nl"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "T"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Lemh an t-eolais crua-earra"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Ag feistil tiomana do %s, carta %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modl %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -721,17 +721,17 @@ msgid ""
"For instance, ``io=0x300 irq=7''"
msgstr ""
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Roghachais modil:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr ""
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -743,109 +743,109 @@ msgid ""
"not cause any damage."
msgstr ""
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr ""
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Cumraigh roghanna"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr ""
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "T an pasfhocal seo ro-shimpl"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr ""
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Is ann cheana don ainm sideora seo"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Is ann cheana don ainm sideora seo"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Suimigh sideoir"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr ""
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "For ainm"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Ainm sideora"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Blaosc"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Dealbh"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Uath-Logann"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -854,57 +854,57 @@ msgstr ""
"Is fidir linn do romhaire a shocr le X a thosn i ndhiadh bootil.\n"
"An dteastaonn uait go dtosnfar X nuair a aththosntear an romhaire?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Roghnagih an sidoer gnes:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Roghnaigh an Bainistoir Fhuinneoga a ssd:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Gach Rud"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Suimigh sideoir"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "Ag Tosnaigh CUPS"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -913,67 +913,67 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr ""
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Bocht"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "rd"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "rd"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranid"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -983,42 +983,42 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Roghnachais"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Roghnaigh liebhal slndil"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Roghnaigh liebhal slndil"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Roghnaigh cumraocht an freastala"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1026,7 +1026,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1047,58 +1047,58 @@ msgstr ""
# FIXME
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "File go GRUB, an roghnir Choris "
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Deasc"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Clr Tosn"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1150,128 +1150,128 @@ msgstr "Md Lilo/Grub"
msgid "Yaboot mode"
msgstr "Md Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Feistigh cras"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Cruthaigh rann nua"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Earrid"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "Freastala XFree86: %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "GanBhide"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Roghnaigh rang feisti"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Cumraigh"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Roghn Grpa Pacist"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1280,44 +1280,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Md Coras"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Ceart go Leor"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, fuzzy, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Earrid ag oscailt %s do scrobh: %s"
@@ -1422,53 +1422,61 @@ msgstr "srathach"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "nua"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Freastala"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Teastil an luchg, le do thoil"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Freastala"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr ""
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Roghnachais: %s"
@@ -1553,7 +1561,7 @@ msgstr "Folamh"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Eile"
@@ -1703,7 +1711,7 @@ msgstr ""
"Nl an mid canna ar an rann cltaca\n"
"Lean ar aghaidh ar aon ns?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Rabhadh"
@@ -2254,7 +2262,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Ainm sideora"
@@ -2269,23 +2277,23 @@ msgstr "Fearannas NIS"
msgid "Search servers"
msgstr "freastala DNS"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "Formidi %s de %s teipithe"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "nl a fhios agam conas %s a formidi go %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2365,46 +2373,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Earrid ag oscailt %s do scrobh: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "cumraocht"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Tiomna"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/C_idi"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Trialaigh an cumraocht"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Fan tamall"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2530,7 +2603,8 @@ msgid "/_Quit"
msgstr "alaigh"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/C_idi"
@@ -2550,75 +2624,76 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Tuairaisc Fabht"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Cidi/_Faoi..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "leagan `kernel'"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Lemh an t-eolais crua-earra"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Taispen Eolas"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Cumraigh luchg"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Pointe taca dublach %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Fan tamall"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Scros Printir"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d siocand"
@@ -3663,7 +3738,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3678,7 +3753,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3687,31 +3762,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Earrid ag lamh comhad %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -3934,7 +4009,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Filte go %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nl dioscthiomnt flapach ar fil"
@@ -3960,11 +4035,11 @@ msgstr "Rann Feisti"
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Roghn Grpa Pacist"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr ""
@@ -4038,7 +4113,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Feisti"
@@ -4061,7 +4136,7 @@ msgstr "Eirigh as Feisti"
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Ag Feisti"
@@ -4088,17 +4163,17 @@ msgid "Installing package %s"
msgstr "Ag feistil paciste %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aontaigh"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Tarrthil"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4109,16 +4184,16 @@ msgid ""
msgstr ""
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Lean ar aghaidh ar aon ns?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr ""
@@ -4215,7 +4290,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4293,7 +4368,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Eocharclr"
@@ -4501,47 +4576,47 @@ msgstr "Cur isteach diosca sa dioscthiomant %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Roghnaigh pacist a feisti ..."
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Fan tamall"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Ag Ullmhaigh feisti"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4550,21 +4625,21 @@ msgstr ""
"Ag feisteil paciste %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Cumraocht Iar-feist"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4603,7 +4678,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4615,157 +4690,157 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Cn ceann do chrois ama"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Freastala NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Scrios Freastala CUPS"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Gan Printir"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Coimri"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Luchg"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Am Cros"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printir"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Carta ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Carta Fuaim"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Carta Telefs"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Chomaid itil"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Socraigh pasfhocal root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Gan pasfhocal"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Deimni"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Deimni LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Freastala LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Deimni NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Freastala NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4781,21 +4856,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Deimni LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Ainm Fearannas"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4813,19 +4888,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Cead dioscthiomnt flapach"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Dara dioscthiomint flapach"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Scipeil"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4841,7 +4916,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -4850,29 +4925,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Brn orm, nl aon dioscthiomnt flapach ar fil"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
#, fuzzy
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Roghnaigh na ranna at le formidi"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Ag Cruthaigh diosca thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Ag Ullmhaigh romhchlar thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4880,27 +4955,27 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Card a theastaonn uait a dhanamh?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Feistigh cd tosnaithe"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4911,24 +4986,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4947,16 +5022,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Cruthaigh flapach bootil"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4965,15 +5040,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Athldaigh"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
#, fuzzy
msgid "Save packages selection"
msgstr "Roghn Grpa Pacist"
@@ -5010,14 +5085,14 @@ msgstr "Ramhioaocht"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Teacs"
@@ -5467,7 +5542,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr ""
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5607,15 +5682,15 @@ msgstr "Ar bith"
msgid "No mouse"
msgstr "Luchg ar bith"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Teastil an luchg, le do thoil"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr ""
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "BOG DO ROTHAR!"
@@ -5651,34 +5726,30 @@ msgstr ""
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr ""
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "sid dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "sid pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "sid pppoe"
@@ -5770,7 +5841,7 @@ msgstr "Cn cinal luchg at agat?"
msgid "no network card found"
msgstr "n fuaireathas crta grasn"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Cumraigh grasn"
@@ -5782,15 +5853,15 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "stAinm"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Draodir Cumraocht Grasn"
@@ -5830,8 +5901,8 @@ msgid "Old configuration (isdn4net)"
msgstr "irigh as cumraocht"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Cumraigh ISDN"
@@ -5865,23 +5936,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr ""
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Cn cinal c at uait?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Nl fhos agam"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA/ PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -5890,25 +5966,25 @@ msgid ""
"card.\n"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Tobscoir"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Lean"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Cn sort carta ISDN at uait?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
@@ -5963,60 +6039,60 @@ msgstr "Cead Freastala DNS"
msgid "Second DNS Server (optional)"
msgstr "Dara Freastala DNS"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Cumraigh nasc ghrasn"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Bainteach le hIdirlon"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Cn diosca ag a dteastaonn uait a bhogadh?"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "Lean"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "Cumraigh nasc ghrasn"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Cumraigh grasn"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Nasc na hIdirlon agus cumraocht"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Cumraigh nasc ghrasn"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6028,12 +6104,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Cumraocht Grasn"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6041,7 +6117,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6049,103 +6125,103 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Roghnagih an sidoer gnes:"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Md Saineola"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy
msgid "Normal modem connection"
msgstr "Cumraigh nasc ghrasn"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Pointe taca dublach %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, fuzzy
msgid "ISDN connection"
msgstr "Cumraigh ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Nasc LAN"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Clradan Grasn"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Cumraigh nasc ghrasn"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Nasc LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Roghnaigh na ranna at le formidi"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Nasc Printir"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Cumraocht Grasn"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6153,27 +6229,27 @@ msgid ""
"%s"
msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6181,50 +6257,50 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Ag cumr glas grasn %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, fuzzy, c-format
msgid " (driver %s)"
msgstr " (tiomint %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Seoladh IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr ""
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Uath-IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Cruthaigh an diosca "
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6232,41 +6308,49 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "freastala DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gaireas na hInneal Geata"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:380
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Cumraigh seach-freastala"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Seach-HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Seach-FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
msgstr ""
#: ../../network/shorewall.pm_.c:24
@@ -7622,7 +7706,7 @@ msgstr "Ag dnadh sos an ghreasn"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8123,10 +8207,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr ""
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8174,6 +8254,43 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Roghnaigh liebhal slndil"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Roghnaigh liebhal slndil"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Scros Printir"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr "Gnth"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Roghnaigh liebhal slndil"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Fan tamall, ag ullmhaigh feisti"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8407,7 +8524,7 @@ msgstr "Idirlon"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Md Coras"
@@ -8499,7 +8616,7 @@ msgstr ""
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -8546,7 +8663,7 @@ msgstr "Clradan Grasn"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8571,7 +8688,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -8587,7 +8704,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8602,7 +8719,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -8651,8 +8768,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -8689,11 +8806,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Ag feistil paciste %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "irigh as le do thoil agus Crtl-Alt-BackSpace a sid"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
@@ -8740,17 +8857,6 @@ msgstr "Suimigh sideoir"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/C_idi"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -8803,51 +8909,66 @@ msgstr "Suimigh sideoir"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Ag cumraigh IDE"
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "irigh as cumraocht"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr ""
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Nl dioscthiomnt flapach ar fil"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -8971,13 +9092,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Bain trial as ars"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -8986,41 +9107,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Gan pasfhocal"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Earrid ag oscailt %s do scrobh: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9031,68 +9152,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9100,922 +9221,924 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Earrid ag lamh comhad %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Roghn Grpa Pacist"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Scrios ci"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Dealaigh Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Ainm sideora"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Teastil an luchg, le do thoil"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Gan pasfhocal"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Cn leagan amach at ar d'eocharchlrsa"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Roghnaigh Comhad"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Teastil an luchg, le do thoil"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Clradan Grasn"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Cinel"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Ainm sideora"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Fan tamall"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Roghachais modil:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Cumraocht Grasn"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Cn cinal luchg at agat?"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Socraigh cras chomhad"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Gaireas luchige: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Roghnachais"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Cn cinal luchg at agat?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Cumraocht Grasn"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Cn cinal luchg at agat?"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Teastil an luchg, le do thoil"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Nasc LAN"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Nasc Printir"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Aisig dhiosca flapach"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Cn cinal luchg at agat?"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Eile"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Feistigh cras"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Aisig comhad"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Aisig comhad"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Cn cinal luchg at agat?"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Scrios ci"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Aisig comhad"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Aisig dhiosca flapach"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Scriobh clr-ranna"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Aisig comhad"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "stAinm"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Pasfhocal"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Ainm sideora"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Ainm sideora"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Aisig comhad"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Socraithe"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Scriobh clr-ranna"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Aisig comhad"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Clr Tosn"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Aisig comhad"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr ""
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Sabhil i gcomhad"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Cumraocht Grasn"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Cumraocht Grasn"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "cumraocht"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "irigh as cumraocht"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Socraigh cras chomhad"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10047,7 +10170,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10056,7 +10179,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10097,7 +10220,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10125,17 +10248,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10152,7 +10275,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10192,7 +10315,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10203,7 +10326,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10216,7 +10339,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10298,8 +10421,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr ""
@@ -10374,28 +10497,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Poirt"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Eirigh as Feisti"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr ""
@@ -10503,11 +10626,6 @@ msgstr "Draodoir..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Trialaigh an cumraocht"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -10627,7 +10745,7 @@ msgstr "Ainm Modl"
msgid "Size"
msgstr "Mid"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -10695,24 +10813,24 @@ msgstr "Aschur"
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Teip ar glaoch `fork': %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11167,154 +11285,154 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Grupa na hOibre"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "rann %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Ainm sideora"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Scros"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Crochnithe"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Suimigh Modil"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Gan Printir"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Scrios ci"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
msgstr ""
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Leagan: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Poirt"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Roghn Grpa Pacist"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Ainm sideora"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Grupa na hOibre"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Cumraigh ADSL"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11326,136 +11444,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Trialaigh an cumraocht"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Riteach"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Roghnaigh gnomh"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Comh. ainm"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Cumraocht Iar-feist"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "alaigh"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Feistigh cras"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Cumraigh seirbhis"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
-msgid "the color of the progress bar"
+msgid "the heigth of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "preview"
+msgid "Preview"
msgstr "feist"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "choose color"
-msgstr "Roghnaigh scilen"
+msgid "Save theme"
+msgstr "Feistigh cras"
#: ../../standalone/draksplash_.c:124
+#, fuzzy
+msgid "Choose color"
+msgstr "Roghnaigh scilen"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Nasc Printir"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Gaireas Printir (URI)"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Scros Printir"
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11594,6 +11723,12 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
@@ -11620,11 +11755,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -11902,16 +12037,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -11987,7 +12119,7 @@ msgstr "Feistigh cras"
msgid "Exit install"
msgstr "Eirigh as Feisti"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12237,6 +12369,14 @@ msgstr "Ilmhenach"
msgid "Scientific Workstation"
msgstr "Stisin Oibre"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Cumraocht Iar-feist"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "alaigh"
+
#~ msgid "You don't have any partitions!"
#~ msgstr "Nl aon ranna agat!"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 26ec486ff..6c93a6ad7 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-03-17 19:17+0100\n"
"Last-Translator: Jess Bravo lvarez (mdk) <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@@ -88,24 +88,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr "Usar deteccin automtica"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Axudante da configuracin de rede"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s con aceleracin 3D por hardware"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -115,18 +115,18 @@ msgstr ""
"XFree %s. A tarxeta est soportada por XFree %s, que pode ter un mellor\n"
"soporte en 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"A sa tarxeta pode ter soporte de aceleracin 3D por hardware con XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con aceleracin 3D por hardware EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -138,7 +138,7 @@ msgstr ""
"A sa tarxeta est soportada por XFree %s, que pode ter un mellor soporte en "
"2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -147,12 +147,12 @@ msgstr ""
"A sa tarxeta pode ter soporte de aceleracin 3D por hardware, pero s con\n"
"XFree %s, ADVIRTA QUE ESTE SOPORTE EXPERIMENTAL E PODE COLGAR O SISTEMA."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Personalizado"
@@ -173,32 +173,32 @@ msgstr "Resolucin"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcins"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Aceptar"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Sar"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -296,25 +296,25 @@ msgstr "Escolla a resolucin e a profundidade de cor"
msgid "Graphics card: %s"
msgstr "Tarxeta grfica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Cancelar"
@@ -391,11 +391,11 @@ msgstr "Servidor XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Controlador de XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Lanzar X11 arrincar"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -404,7 +404,7 @@ msgstr ""
"Pdese configurar o seu ordenador para que entre automaticamente\n"
"en X arrincar. Desexa que se execute X reiniciar?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -416,7 +416,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Que tipo de conexin RDSI ten?"
@@ -489,7 +489,7 @@ msgstr "Compacto"
msgid "compact"
msgstr "compacto"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Modo de vdeo"
@@ -497,17 +497,17 @@ msgstr "Modo de vdeo"
msgid "Delay before booting default image"
msgstr "Retardo antes de arrincar a imaxe por omisin"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Contrasinal"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Contrasinal (de novo)"
@@ -543,14 +543,14 @@ msgstr ""
"A opcin ``restrinxir opcins da lia de comandos'' non ten sentido sen "
"contrasinal"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Tente de novo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Os contrasinais non coinciden"
@@ -587,7 +587,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -595,156 +595,156 @@ msgstr ""
"Estas son as diferentes entradas.\n"
"Pode engadir algunhas mis ou cambiar as que xa existen."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Engadir"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Feito"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Que tipo de entrada desexa engadir?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Outros SO (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Outros SO (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Imaxe"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Raz"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Agregar"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lectura-escritura"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tboa"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Inseguro"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Por omisin"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr ""
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Quitar entrada"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Etiqueta baleira non permitida"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Debe ter unha particin de intercambio"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Esta etiqueta xa se est a usar"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s interfaces %s atopadas"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Ten algunha outra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ten algunha interface %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Non"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Si"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Mire a informacin sobre o hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando o controlador para a tarxeta %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(mdulo %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -755,17 +755,17 @@ msgstr ""
"As opcins son da forma nome=valor nome2=valor2 ....\n"
"Por exemplo pode ter io=0x300 irq=7"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opcins do mdulo:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Que controlador de %s desexa probar?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -783,15 +783,15 @@ msgstr ""
"analizar o equipo pode provocar que se pare, pero non debera\n"
"causar ningn dano."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Autodeteccin"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Especificar as opcins"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -800,62 +800,62 @@ msgstr ""
"Fallo o cargar o mdulo %s\n"
"Desexa retentalo con outros parmetros?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s xa foi engadido)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Este contrasinal demasiado simple"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Indique o nome de usuario"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "O nome de usuario (login) s debe conter letras, nmeros, '-' e '_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Este nome de usuario xa est engadido"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Este nome de usuario xa est engadido"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -864,32 +864,32 @@ msgstr ""
"Introduza un usuario\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Aceptar usuario"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nome de usuario"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Login automtico"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -899,59 +899,59 @@ msgstr ""
"como un usuario. Se non quere usar esta caracterstica, prema o botn\n"
"cancelar."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Escolla o usuario por defecto:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Escolla o xestor de fiestras para executar:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Escolla a lingua que desexe usar."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Pode escoller outras linguas que estarn dispoibles trala instalacin"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Todas"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS iniciando"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Este paquete ten que ser actualizado\n"
"Est seguro de que quere deseleccionalo?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -960,42 +960,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Benvida s crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estndar"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Alto"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1005,7 +1005,7 @@ msgstr ""
"sinxelo de utilizar, pero moi sensible: non debe usarse nunha mquina\n"
"conectada a outras ou Internet. Non hai contrasinais de acceso."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1013,7 +1013,7 @@ msgstr ""
"Os contrasinais estn activados, pero o uso como ordenador de rede anda\n"
"non se recomenda."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1022,13 +1022,13 @@ msgstr ""
"Esta a seguridade recomendada para un ordenador usado para conectar\n"
" Internet como cliente. Agora hai ms comprobacins de seguridade."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1042,7 +1042,7 @@ msgstr ""
"A seguridade agora alta dabondo para usar o sistema coma un servidor\n"
"que acepta conexins de mltiples clientes."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1051,36 +1051,36 @@ msgstr ""
"Tmanse caractersticas do nivel 4, pero agora o sistema est completamente\n"
"pechado. As caractersticas de seguridade estn mximo nivel."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcins"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Escola o nivel de seguridade"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Establecendo o nivel de seguridade"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Escolla as opcins para o servidor"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1093,7 +1093,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1117,59 +1117,59 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvido ao GRUB, o selector de sistemas operativos!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use as teclas %c e %c para seleccionar a entrada marcada."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Prema enter para arrincar o SO seleccionado, 'e' para editar os"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandos antes de arrincar, ou 'c' para a lia de comandos."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "A entrada marcada arrincarase automaticamente en %d segundos."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "non hai espacio dabondo en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Escritorio"
# Manter o '' en iso-8859-1
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Men Inicio"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Onde quere instalar o cargador de arrinque?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "axuda anda non implementada.\n"
@@ -1225,129 +1225,129 @@ msgstr "Modo de marcacin"
msgid "Yaboot mode"
msgstr "Modo de arrinque"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Instalar sistema"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Crear unha nova particin"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Erro"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "bo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Clase de instalacin"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Configurar as X"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Gardar a seleccin de paquetes"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1356,44 +1356,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Lanzar o sistema X-Window iniciar"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Non, non quero login automtico"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Si, quero login automtico con este (usuario, escritorio)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Aceptar"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "non se pode abrir /etc/inittab para lectura: %s"
@@ -1498,54 +1498,62 @@ msgstr "serie"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "novo"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmontar"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto de montaxe"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Probe o seu rato"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "O proxy debera ser http://..."
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Punto de montaxe: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcins: %s"
@@ -1634,7 +1642,7 @@ msgstr "Baleiro"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Outros"
@@ -1786,7 +1794,7 @@ msgstr ""
"A tboa de particins de rescate non ten\n"
"o mesmo tamao. Continuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Advertencia"
@@ -2345,7 +2353,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Nome de usuario"
@@ -2360,23 +2368,23 @@ msgstr "Dominio NIS"
msgid "Search servers"
msgstr "Servidor DNS"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "O formato %s de %s fallou"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Descocese o xeito de formatar %s de tipo %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
@@ -2465,46 +2473,109 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Erro abrir %s para escritura: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Configuracin da LAN"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Controlador"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Axuda"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Por favor, agarde... Aplicando a configuracin"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Agarde, por favor"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2631,7 +2702,8 @@ msgid "/_Quit"
msgstr "Sar"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/A_xuda"
@@ -2651,76 +2723,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Comunicar erro"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Axuda/_Acerca..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Autodeteccin"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detectar discos duros"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Mire a informacin sobre o hardware"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Mostrar informacin"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Configurar o rato"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "detectado no porto %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Agarde, por favor"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d segundos"
@@ -3895,7 +3968,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3910,7 +3983,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3919,20 +3992,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insira un disquete formatado con FAT na unidade %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3940,12 +4013,12 @@ msgstr ""
"Para usar esta seleccin de paquetes gardada, arrinque a instalacin con "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo o ficheiro %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4191,7 +4264,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Benvido a %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ningunha disqueteira dispoible"
@@ -4222,11 +4295,11 @@ msgstr "Clase de instalacin"
msgid "Please choose one of the following classes of installation:"
msgstr "Escolla unha das seguintes clases de instalacin:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Seleccin dos grupos de paquetes"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Seleccin individual de paquetes"
@@ -4304,7 +4377,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalar"
@@ -4327,7 +4400,7 @@ msgstr "Desinstalar"
msgid "Choose the packages you want to install"
msgstr "Escolla os paquetes que desexa instalar"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instalando"
@@ -4354,17 +4427,17 @@ msgid "Installing package %s"
msgstr "Instalando o paquete %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aceptar"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Rexeitar"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4379,16 +4452,16 @@ msgstr ""
"non o ten, prema Cancelar para omitir a instalacin deste Cd-Rom."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Seguir adiante?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Houbo un erro ordenar os paquetes:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Houbo un erro instalar os paquetes:"
@@ -4485,7 +4558,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4563,7 +4636,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclado"
@@ -4779,31 +4852,31 @@ msgstr "Insira un disquete na unidade %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Elixa o paquete a instalar"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Agarde"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4813,16 +4886,16 @@ msgstr ""
"Se non ten ningn deses CDs, prema Cancelar.\n"
"Se s faltan algns dos CDs, desmrqueos, e prema Aceptar."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etiquetado \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Preparando a instalacin"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4831,21 +4904,21 @@ msgstr ""
"Instalando o paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Configuracin trala instalacin"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4916,7 +4989,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4928,165 +5001,165 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Contactando co espello para obter a lista dos paquetes dispoibles"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Escoller un espello do que coller os paquetes"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Contactando co espello para obter a lista dos paquetes dispoibles"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Cal a sa zona horaria?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "O reloxo interno do seu ordenador usa a hora GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Sen impresora"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Ten algunha outra?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resume"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Rato"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Zona horaria"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impresora"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Tarxeta RDSI"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Tarxeta de son"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Tarxeta de TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Impresora local"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasinal de root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Sen contrasinal"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Este contrasinal demasiado simple (ten que ter polo menos %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticacin"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticacin"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "Autenticacin NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5102,21 +5175,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticacin"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nome de dominio"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5145,19 +5218,19 @@ msgstr ""
"de Mandrake, facendo as moito mis fcil a recuperacin no caso de fallo\n"
"grave do sistema. Desexa crear un disco de arrinque para o seu sistema?"
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Primeira unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Segunda unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Omitir"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5184,7 +5257,7 @@ msgstr ""
"grave do sistema. Desexa crear un disco de arrinque para o seu sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5193,28 +5266,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, pero non hai ningunha disqueteira dispoible"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Escolla a disqueteira que quere usar para crear o disco de arranque"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Creando o disco de arrinque"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Preparando o cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5222,11 +5295,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Desexa usar aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5234,16 +5307,16 @@ msgstr ""
"Erro instalando aboot, \n"
"probar a forzar a instalacin mesmo se iso destre a primeira particin?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "A instalacin do xestor de arrinque fallou. Ocorreu o seguinte erro:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5254,17 +5327,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Creando un disquete de auto-instalacin"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5274,7 +5347,7 @@ msgstr ""
"\n"
"Desexa realmente sar agora?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5307,15 +5380,15 @@ msgstr ""
"da instalacin, hai un captulo na Gua do Usuario Oficial\n"
"de Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Xerar disquete de auto-instalacin"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5329,15 +5402,15 @@ msgstr ""
"\n"
"Pode preferir realizar novamente a instalacin.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatizada"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Reproducir"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Gardar a seleccin de paquetes"
@@ -5374,14 +5447,14 @@ msgstr "Avanzado"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Texto"
@@ -5837,7 +5910,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Puntos de montaxe circulares %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Quitar primeiro os volumes lxicos\n"
@@ -5975,15 +6048,15 @@ msgstr "ningn"
msgid "No mouse"
msgstr "Ningn rato"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Probe o seu rato"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Para activar o rato,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MOVA A RODA!"
@@ -6019,11 +6092,11 @@ msgstr "Pechar rbore"
msgid "Toggle between flat and group sorted"
msgstr "Mudar entre lista completa e ordenada por grupos"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Conectar Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6033,23 +6106,19 @@ msgstr ""
"Algunhas conexins usan pptp, e algunhas usan dhcp.\n"
"Se non o sabe con certeza, escolla 'usar pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "usar dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "usar pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "usar pptp"
@@ -6144,7 +6213,7 @@ msgstr "Escolla o adaptador de rede que desexa usar para conectar Internet"
msgid "no network card found"
msgstr "non se atopou ningunha tarxeta de rede"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Configurando a rede"
@@ -6160,15 +6229,15 @@ msgstr ""
"Este nome debe ser completamente cualificado,\n"
"como ``miamaquina.meulab.miacomp.es''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Nome de mquina"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Axudante da configuracin de rede"
@@ -6208,8 +6277,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Detectouse unha configuracin de firewall!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Configuracin da RDSI"
@@ -6249,23 +6318,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Qu protocolo desexa usar?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Qu tipo de tarxeta ten?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Non sei"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6279,19 +6353,19 @@ msgstr ""
"\n"
"Se ten unha tarxeta PCMCIA, ten que coecer a irq e a e/s da tarxeta.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Abortar"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Continuar"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Cal a sua tarxeta RDSI?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6299,7 +6373,7 @@ msgstr ""
"Detectouse unha Tarxeta RDSI PCI, pero se descoece o tipo. Seleccione unha "
"tarxeta PCI na seguinte pantalla."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Non se atopou ningunha tarxeta RDSI PCI. Seleccione unha na prxima pantalla."
@@ -6352,7 +6426,7 @@ msgstr "Primeiro Servidor DNS (opcional)"
msgid "Second DNS Server (optional)"
msgstr "Segundo Servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6360,7 +6434,7 @@ msgstr ""
"\n"
"Pode desconectar ou reconfigurar a sa conexin."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6368,11 +6442,11 @@ msgstr ""
"\n"
"Pode reconfigurar a sa conexin."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Est neste intre conectado internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6380,36 +6454,36 @@ msgstr ""
"\n"
"Pode conectar Internet ou reconfigurar a sa conexin."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Non est neste intre conectado Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Conectar"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "conexin por RDSI"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Configurar a rede"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Conexin e configuracin de Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Pode desconectar ou reconfigurar a sa conexin."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6423,12 +6497,12 @@ msgstr ""
"\n"
"Pode desconectar ou reconfigurar a sa conexin."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuracin da rede"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6439,7 +6513,7 @@ msgstr ""
"Prema Aceptar para manter a configuracin, ou Cancelar para reconfigurar a "
"conexin de rede e Internet.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
#, fuzzy
msgid ""
"Welcome to The Network Configuration Wizard.\n"
@@ -6452,99 +6526,99 @@ msgstr ""
"Vaise configurar a sa conexin internet/rede.\n"
"Se non quere usar a deteccin automtica, desmarque a caixa.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Escolla o perfil para configurar"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Usar deteccin automtica"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Modo experto"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detectando os dispositivos..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Conexin normal por mdem"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detectado no porto %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "conexin por RDSI"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detectouse %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Conexin LAN"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detectouse na interface %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Conexin por cable"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Conexin por cable"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Conexin LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "tarxeta(s) ethernet detectada(s)"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Elixa a ferramenta que queira usar"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Comparticin da conexin Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Desexa que a conexin se inicie arrincar?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Configuracin da rede"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6552,7 +6626,7 @@ msgid ""
"%s"
msgstr "Desexa reiniciar a rede?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6562,7 +6636,7 @@ msgstr ""
"\n"
"Agora vai ser aplicada seu sistema.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6570,14 +6644,14 @@ msgstr ""
"Tras facer iso, aconsllase reiniciar o sistema X para\n"
"evitar os problemas de mudar o nome de mquina."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6589,7 +6663,7 @@ msgstr ""
"Simplemente acepte para manter o dispositivo configurado.\n"
"Se modifica os campos de embaixo, subsituir esta configuracin."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6599,43 +6673,43 @@ msgstr ""
"Cada valor ten que ser introducido coma un enderezo IP en\n"
"notacin decimal con puntos (por exemplo: 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Configurar o dispositivo de rede %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Enderezo IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Mscara de rede"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP automtico"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Iniciado o arrincar"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6647,42 +6721,53 @@ msgstr ""
"como ``miamaquina.meulab.miacomp.es''.\n"
"Pode tamn introducir o enderezo IP da pasarela se usa unha"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dispositivo de pasarela"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Configuracin dos proxys"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "O proxy debera ser http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "O proxy debera ser ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "O proxy debera ser http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8082,7 +8167,7 @@ msgstr "Desactivando a rede"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8595,11 +8680,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "O proxy debera ser http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8649,6 +8729,43 @@ msgstr "mkraid fallou (pode que non estean as raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Non hai particins dabondo para o nivel RAID %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Establecendo o nivel de seguridade"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Establecendo o nivel de seguridade"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Opcins da impresora remota lpd"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Por omisin)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Establecendo o nivel de seguridade"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Por favor, agarde, preparando a instalacin"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8947,7 +9064,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -9043,7 +9160,7 @@ msgstr "Conectar Internet"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9090,7 +9207,7 @@ msgstr "Interface de rede"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9115,7 +9232,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9131,7 +9248,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9146,7 +9263,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9195,8 +9312,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9233,11 +9350,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalando o paquete %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Saia da sesin e use Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Entre de novo en %s para activar os cambios"
@@ -9285,16 +9402,6 @@ msgstr "Engadir usuario"
msgid "Add/Del Clients"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Axuda"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9347,53 +9454,68 @@ msgstr "Engadir usuario"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Configurando..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Configuracin da LAN"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "reconfigurar"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Insira un disquete na unidade %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ningunha disqueteira dispoible"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9517,13 +9639,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Probar portos"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9532,41 +9654,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Sen contrasinal"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Adaptador %s: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9577,68 +9699,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9646,922 +9768,924 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Erro lendo o ficheiro %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Seleccin dos grupos de paquetes"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Eliminar fila"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Usuarios"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Sen contrasinal"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Escolla a disposicin do seu teclado."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Prema nunha particin"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Prema nunha particin"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Prema nunha particin"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Prema nunha particin"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Prema nunha particin"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Seleccione un ficheiro"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Interface de rede"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Nome de usuario"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Agarde"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Opcins do mdulo:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuracin da rede"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
#, fuzzy
msgid ""
"\n"
"- User Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
#, fuzzy
msgid ""
"\n"
"- Other Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Dispositivo do rato: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcins"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Escolla o porto serie onde est conectado o seu mdem."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuracin da rede"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Conexin LAN"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Seleccin da conexin da impresora"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaurar a partir dun disquete"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Outros"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Instalar sistema"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Eliminar fila"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Restaurar a partir dun disquete"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Tboa de particins de rescate"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Nome de mquina"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Contrasinal"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Nome de usuario"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Nome de mquina: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Personalizado"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Tboa de particins de rescate"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Estado:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Vanse instalar os seguintes paquetes"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Gardar nun ficheiro"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuracin da rede"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuracin da rede"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuracin da LAN"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuracin da LAN"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10593,7 +10717,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10602,7 +10726,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10643,7 +10767,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10671,17 +10795,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10698,7 +10822,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10738,7 +10862,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10749,7 +10873,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10762,7 +10886,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10844,8 +10968,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Ferramentas de consola"
@@ -10921,28 +11045,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Porto"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Sar da instalacin"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Pode escoller outras linguas que estarn dispoibles trala instalacin"
@@ -11042,10 +11166,6 @@ msgstr "Axudante..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Por favor, agarde... Aplicando a configuracin"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -11163,7 +11283,7 @@ msgstr "Nome do mdulo"
msgid "Size"
msgstr "Tamao"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11228,24 +11348,24 @@ msgstr "Sada"
msgid "Build the disk"
msgstr "Crear o disco"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11734,157 +11854,157 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Grupo de traballo"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "particin %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Nome de usuario"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Borrar"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Feito"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Engadir un mdulo"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Sen impresora"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Eliminar fila"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Aceptar usuario"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versin: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Porto"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Usar deteccin automtica"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Usar deteccin automtica"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Gardar a seleccin de paquetes"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Nome de usuario"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Grupo de traballo"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Non conectado"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11896,137 +12016,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "creacin do disquete de arrinque"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resolucin"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Escolla a accin"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Nome de recurso compartido"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Configuracin trala instalacin"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Sar"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Instalar sistema"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Configurar servicios"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "dispositivo"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "dispositivo"
+msgid "Save theme"
+msgstr "Instalar sistema"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Escolla o monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Conexin da impresora"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "URI do dispositivo de impresin"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Detectando os dispositivos..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12167,6 +12297,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "uso: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uso: keyboarddrake [--expert] [keyboard]\n"
@@ -12196,11 +12333,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -12482,16 +12619,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12567,7 +12701,7 @@ msgstr "Instalar sistema"
msgid "Exit install"
msgstr "Sar da instalacin"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12820,6 +12954,21 @@ msgstr "Multimedia - Gravacin de CD"
msgid "Scientific Workstation"
msgstr "Estacin de traballo cientfica"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Configuracin trala instalacin"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "O proxy debera ser ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Sar"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (non funciona en BIOS antigas)"
@@ -12910,9 +13059,6 @@ msgstr "Estacin de traballo cientfica"
#~ msgid "Test again"
#~ msgstr "Probar de novo"
-#~ msgid "Setting security level"
-#~ msgstr "Establecendo o nivel de seguridade"
-
#~ msgid "Select a graphics card"
#~ msgstr "Seleccione unha tarxeta grfica"
@@ -12990,3 +13136,6 @@ msgstr "Estacin de traballo cientfica"
#~ msgid "Percentage of packages to install"
#~ msgstr "Porcentaxe de paquetes a instalar"
+
+#~ msgid "/Help/_Report Bug"
+#~ msgstr "/Axuda/_Comunicar erro"
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index c01c9f503..b3cb7e389 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-03-22 05:58CET\n"
"Last-Translator: Vlatko Kosturjak <kost@iname.com>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
@@ -91,24 +91,24 @@ msgstr "Podesi sve zaslone nezavisno"
msgid "Use Xinerama extension"
msgstr "Koristi Xinerama proirenje"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Podesi samo karticu \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s sa 3D hardware akceleracijom"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"Vaa video kartica moe imati 3D ubrzanje samo sa XFree %s.\n"
"Vaa kartica je podrana od XFree %s koji moda ima bolju podrku u 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaa kartica moe imati 3D hardware-sku akceleraciju sa XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EXPERIMENTALNOM 3D hardware akceleracijom"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"RAUNALO.Vaa kartica je podrana od XFree %s koja moe imati bolju podrku "
"u 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,12 +149,12 @@ msgstr ""
"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODRKA I MOE ZAMRZNUTI VAE "
"RAUNALO."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalacijski zaslonski upravljaki program)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Prilagoeno"
@@ -175,32 +175,32 @@ msgstr "Rezolucija"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "U redu"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Zavri"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -299,25 +299,25 @@ msgstr "Odaberite rezoluciju i color depth"
msgid "Graphics card: %s"
msgstr "Grafika kartica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Odustani"
@@ -394,11 +394,11 @@ msgstr "XFree86 posluitelj: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 upravljaki program: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X kod pokretanja sustava"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -407,7 +407,7 @@ msgstr ""
"Mogu podesiti da se X podigne automatski kod podizanja sustava.\n"
"Da li elite da se X automatski pokree?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -419,7 +419,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Kakav tip ISDN veze koristite ?"
@@ -492,7 +492,7 @@ msgstr "Zbijeno"
msgid "compact"
msgstr "zbijeno"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Video mod"
@@ -500,17 +500,17 @@ msgstr "Video mod"
msgid "Delay before booting default image"
msgstr "Odgoda prije bootiranja uobiajenog imagea"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Lozinka"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Lozinka (provjera)"
@@ -546,14 +546,14 @@ msgstr ""
"Postavka ``Ograniene opcije na komandnoj liniji'' nema svrhe ako ne unesete "
"lozinku"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Molim pokuajte ponovo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Lozinke se ne podudaraju"
@@ -595,7 +595,7 @@ msgstr ""
"\n"
"Sa kojeg diska elite podizati?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -603,148 +603,148 @@ msgstr ""
"Ovo su trenutni zapisi.\n"
"Moete dodati jo koji ili urediti postojei."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Gotov"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Promjeni"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Kakvu vrstu zapisa elite dodati"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Drugi OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Drugi OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Drugi OS (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Slika (image)"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Dodaj na kraj"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "itaj-pii"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tablica"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Oznaka"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Uobiajeno"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-veliina"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NemaVidea"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Ukloni zapis"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Morate odrediti sliku kernela"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Morate odrediti root particiju"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Ova oznaka ve postoji"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronaao sam %s %s meusklopova"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Da li imate jo koji?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Da li imate %s meusklopova?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Pokai info o hardveru"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram upravljaki program %s za karticu %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, fuzzy, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -753,7 +753,7 @@ msgstr ""
"Sada moete unijeti opcije za modul %s.\n"
"Primjetite da svaka adresa treba biti uneena sa prefiksom 0x kao '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -764,17 +764,17 @@ msgstr ""
"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
"Na primjer, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Postavke modula:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s upravljaki program elite isprobati?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -793,15 +793,15 @@ msgstr ""
"raunalo za informacije koje treba? Ponekad, isprobavanje moe zamrznuti\n"
"vae raunlo, ali ne bi trebalo izazvati nikakvu tetu."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Auto. ispitaj"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Odredi postavke"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -810,64 +810,64 @@ msgstr ""
"Uitavanje modula %s nije uspjelo.\n"
"Da li elite pokuati ponovo sa drugim parametrima?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "pristup administracijskim datotekama"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(ve postoji %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Lozinka je prejednostavna"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Molim dajte korisniku korisniko ime"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisniko ime moe sadravati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Ovaj korisnik ve postoji"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Ovaj korisnik ve postoji"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -876,32 +876,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Puno ime"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Korisniko ime"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Ljuska"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Auto-prijava"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -909,54 +909,54 @@ msgstr ""
"Mogu podesiti da se vae raunalo automatski prijavi kao jedan korisnik.\n"
"Da li elite koristiti tu pogodnost?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Izaberite uobiajenog korisnika:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Izaberite prozorski upravitelj koji elite pokrenuti:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Molim izaberite jezik koji elite koristiti."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Moete izabrati druge jezike koji e biti dostupni nakon instalacije"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Sve"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Nema dijeljenja"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba instalirati. Da li ga elite instalirati?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Moete izvesti koristei NFS ili Sambu. Koji od njih elite"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nuni paket %s nedostaje"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -972,11 +972,11 @@ msgstr ""
"\n"
"\"Proizvoljno\" e omoguiti dozvoljavanje po korisniku.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -984,31 +984,31 @@ msgstr ""
"Dijeljenje po korisniku koristi grupu \"fileshare\". \n"
"Moete koristiti userdrake za dodavanje korisnika u navedenu grupu."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Dobrodoli Crackeri"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standardno"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Vii"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoidan"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1019,7 +1019,7 @@ msgstr ""
"ali vrlo osjetljiv: ne smije biti koriten za raunala koja su povezana u "
"mrei ili na Internet. Naime, nema lozinke za pristup."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1027,7 +1027,7 @@ msgstr ""
"Lozinke su sada ukljuene meutim jo ne preporuam koritenje ovog raunala "
"u mrenom okoliu."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1035,7 +1035,7 @@ msgstr ""
"Ovo je standardna sigurnosna razina preporuena za raunala koja e biti "
"koritena za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1043,7 +1043,7 @@ msgstr ""
"Ve postoje neka ogranienja i vie automatskih provjera se pokree svake "
"noi."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1058,7 +1058,7 @@ msgstr ""
"koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je vae raunalo "
"samo klijent na Internetu, bolje da izaberete niu razinu."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1066,35 +1066,35 @@ msgstr ""
"Temeljeno na prijanjoj razini, ali je sustav potpuno zatvoren.\n"
"Sigurnosne znaajke su na maksimumu."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcije"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Izaberite sigurnosni nivo"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Sigurnosna razina"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za posluitelje"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja titi od prekoraenja spremnika i format string napada."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1107,7 +1107,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1130,58 +1130,58 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro dosli u GRUB izbornik operativnih sustava!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Za mijenjanje izabranog sustava pritisnite tipke %c i %c."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite ENTER za bootiranje izabranog OS, 'e' za promjenu"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "naredbe prije bootiranja ili 'c' za komandnu liniju."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljeni zapis biti e bootiran automatski za %d sekundi."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "nema dovoljno mjesta u /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Radna povrina"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne moete instalirati bootloader na %s particiju\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "nema jo implementirane pomoi.\n"
@@ -1233,106 +1233,106 @@ msgstr "Lilo/grub mod"
msgid "Yaboot mode"
msgstr "Yaboot mod"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Instaliraj sustav"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Stvori novu particiju"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Greka"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Kopiram %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NemaVidea"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Odaberite razred instalacije"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1341,22 +1341,22 @@ msgstr ""
"Trenutno koristite %s kao Upravitelj Boot-a.\n"
"Pritisnite na Podesi za pokretanje arobnjaka za postavljanje."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Podesi"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Spremi odabir paketa"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1365,44 +1365,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistemski mod"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sustav pri podizanju"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ne, ne elim automatsko prijavljivanje"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, elim automatsko prijavljivanje sa ovim korisnikom i okrujem"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "U redu"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ne mogu otvoriti /etc/inittab za itanje: %s"
@@ -1499,53 +1499,61 @@ msgstr "Austrija"
msgid "United States"
msgstr "Sjedinjene Amerike Drave"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "novi"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Posluitelj"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Toka montiranja"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Upiite brzinu cd snimaa"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Posluitelj"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Mjesto montiranja:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
@@ -1636,7 +1644,7 @@ msgstr "Prazno"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Ostali"
@@ -1781,7 +1789,7 @@ msgstr ""
"Backup particijske tablice nema istu veliinu\n"
"Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Upozorenje"
@@ -2341,7 +2349,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Korisniko ime"
@@ -2355,23 +2363,23 @@ msgstr "NIS domena"
msgid "Search servers"
msgstr "Posluitelji za pretraivanje"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne znam kako formatirati %s kao vrstu %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktorij %s neuspjeno"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "greka kod demontiranja %s: %s"
@@ -2460,48 +2468,111 @@ msgstr "Nema nita za uraditi"
msgid "Error opening %s for writing: %s"
msgstr "Greka prilikom otvaranja %s za pisanje: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "CUPS postavke"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Upravljaki program"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Pomo"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo priekajte... Primjenjujem konfiguraciju"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Molim priekajte"
+
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "X upravljaki program"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Nepoznati model"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2628,7 +2699,8 @@ msgid "/_Quit"
msgstr "Zavri"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Pomo"
@@ -2648,76 +2720,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Pomo/_O programu"
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Auto. ispitaj"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Otkrivanje hard diskova"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Pokai info o hardveru"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Prikai informacije"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Podesi mi"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "detektiran na portu %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Molim priekajte"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Uklanjam pisa \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundi"
@@ -4725,7 +4798,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Morate takoer formatirati %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4751,7 +4824,7 @@ msgstr ""
"\n"
"Da li zaista elite instalirati te posluitelje?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4760,20 +4833,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Umetnite FAT formatiranu disketu u pogon %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT formatirana"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4781,12 +4854,12 @@ msgstr ""
"Za koritenje spremljenog odabira paketa, podignite instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Greka prilikom itanja datoteke %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -5029,7 +5102,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Dobrodoli u %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Disketni pogon nije dostupan"
@@ -5058,11 +5131,11 @@ msgstr "Instalacijski razred"
msgid "Please choose one of the following classes of installation:"
msgstr "Molim izaberite jedan od slijedeih razreda instalacije:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Odabir grupe paketa"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individualan odabir paketa"
@@ -5140,7 +5213,7 @@ msgstr "Prikai automatski odabrane pakete"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instaliraj"
@@ -5160,7 +5233,7 @@ msgstr "Minimalna instalacija"
msgid "Choose the packages you want to install"
msgstr "Odaberite pakete koje elite instalirati"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instaliram"
@@ -5187,17 +5260,17 @@ msgid "Installing package %s"
msgstr "Instaliram paket %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Prihvati"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5214,16 +5287,16 @@ msgstr ""
"Cd-Rom-a."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Da ipak nastavim?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Javila se greka prilikom sortiranja paketa:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Pojavila se greka kod instalacije paketa:"
@@ -5348,7 +5421,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5539,7 +5612,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tipkovnica"
@@ -5748,11 +5821,11 @@ msgstr "Umetnite disketu koja sadrava izbor paketa"
msgid "Selected size is larger than available space"
msgstr "Izabrana veliina je vea nego raspoloiv prostor"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Tip instalacije"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5760,19 +5833,19 @@ msgstr ""
"Niste izabrali niti jednu grupu paketa\n"
"Izaberite minimalnu instalaciju ako elite"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Sa X-ima"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporueno!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno malena instalacija (posebice bez urpmia)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5783,16 +5856,16 @@ msgstr ""
"Ako imate samo neke od dolje navedenih CDa odznaite one koje nemate i "
"kliknite U redu."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom naslovljen \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5801,21 +5874,21 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Postava nakon instalacije"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molim, umetnite Boot disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molim, umetnite Update Modules disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5886,7 +5959,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5906,160 +5979,160 @@ msgstr ""
"\n"
"Da li elite instalirati dogradnju?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web site za dobivanje popisa raspoloivih mirrora"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg elite skinuti pakete"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spajam se na mirror kako bih pribavio popis dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Koja je vaa vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Va hardverski sat namjeten je na GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska vremenska sinkronizacija (koristei NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP Posluitelj"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS posluitelj"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nema pisaa"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Da li imate ISA zvunu karticu?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije za podeavanje vae zvune "
"kartice"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije pronaena zvuna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumarno"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Mi"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Pisac"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Zvuna kartica"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Dobavi Windows fontove"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podeavanje root lozinke"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Bez lozinke"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova lozinka je prejednostavna (lozinka mora sadravati barem %d znakova)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Provjera autentinosti"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Posluitelj"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domena"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Posluitelj"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6075,21 +6148,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Ime domene"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6120,19 +6193,19 @@ msgstr ""
"Ako elite napraviti boot disketu za va sustav, ubacite disketu u prvi\n"
" pogon i pritisnite \"U redu\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Prvi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Drugi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Preskoi"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6159,7 +6232,7 @@ msgstr ""
"Da li elite napraviti proizvoljnu boot disketu za va sustav?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6173,28 +6246,28 @@ msgstr ""
"stvaranje boot diskete na disketi kapaciteta 1.44 Mb vjerojatno\n"
"nee uspjeti, jer XFS treba vrlo velik pokretaki program)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "alim, meutim disketni pogon nije dostupan"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Izaberite disketni pogon koji elite koristiti za izradu boot diskete"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Umetnite disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Stvaram boot disketu"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6206,11 +6279,11 @@ msgstr ""
"Instalacija e nastaviti, ali ete morati\n"
" koristiti BootX da podignete vae raunalo"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Da li elite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6218,16 +6291,16 @@ msgstr ""
"Greka prilikom instalacije aboot-a, \n"
"probati nasilno instalirati iako to moe unititi prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Instaliranje bootloadera"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Instalacija bootloader-a nije uspjela. Prijavljena je slijedea greska:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6244,17 +6317,17 @@ msgstr ""
" Tada napiite: shut-down\n"
"Pri slijedeem podizanju trebali biste vidjeti prompt bootloadera."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Umetnite praznu disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6264,7 +6337,7 @@ msgstr ""
"\n"
"elite li zaista zavriti?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6297,16 +6370,16 @@ msgstr ""
"Informacije o konfiguriranju vaeg sustava je raspoloivo u poslije\n"
"instalacijskom poglavlju od Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6320,15 +6393,15 @@ msgstr ""
"\n"
"Moete preferirati da ponovite instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatski"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ponovno prikai"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Spremi odabir paketa"
@@ -6364,14 +6437,14 @@ msgstr "Napredno"
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Prijanje"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Slijedee"
@@ -6821,7 +6894,7 @@ msgstr "Desna \"Windows\" tipka"
msgid "Circular mounts %s\n"
msgstr "Kruno montiranje %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Ukloni logiki volumen prvo\n"
@@ -6960,15 +7033,15 @@ msgstr "niti jedan"
msgid "No mouse"
msgstr "Nema mia"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Molimo istestirajte mia."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Za aktiviranje mia,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "POMAKNITE VA KOTAI!"
@@ -7005,11 +7078,11 @@ msgstr "Sami stablo"
msgid "Toggle between flat and group sorted"
msgstr "Prebaci izmeu ravno i grupno sortiranog"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -7019,23 +7092,19 @@ msgstr ""
"Neke veze koriste pptp, a nekoliko koriste dhcp.\n"
"Ukoliko neznate, izaberite 'koristi pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "koristi dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "koristi pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "koristi pptp"
@@ -7138,7 +7207,7 @@ msgstr ""
msgid "no network card found"
msgstr "ne mogu pronai niti jednu mrenu karticu"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Podeavam mreu"
@@ -7154,15 +7223,15 @@ msgstr ""
"Vae ime raunala bi trebalo biti potpuno-kvalificirano ime raunala,\n"
"kao to je ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Ime raunala"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "arobnjak mrenih postavki"
@@ -7209,8 +7278,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Stara konfiguracija (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN postavke"
@@ -7246,23 +7315,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Koji protokol elite koristiti ?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Kakvu karticu posjedujete?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ne znam"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7276,19 +7350,19 @@ msgstr ""
"\n"
"Ukoliko imate PCMCIA karticu, morate znati irq i io vae kartice.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Prekini"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Nastavi"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Kakvu ISDN karticu imate?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7296,7 +7370,7 @@ msgstr ""
"Pronaao sam ISDN PCI karticu meutim ne znam kojeg je tipa. Molim izaberite "
"vau PCI karticu na slijedeem ekranu."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Nisam naao niti jednu ISDN PCI karticu. Molim izaberite vau PCI karticu na "
@@ -7350,7 +7424,7 @@ msgstr "Prvi DNS posluitelj (opciono)"
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS posluitelj (opciono)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7358,7 +7432,7 @@ msgstr ""
"\n"
"Moete iskljuiti ili ponovno konfigurirati vau vezu."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7366,11 +7440,11 @@ msgstr ""
"\n"
"Moete ponovno konfigurirati vau vezu."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7378,32 +7452,32 @@ msgstr ""
"\n"
"Moete se spojiti na Internet ili ponovno konfigurirati vau vezu."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Niste trenutno spojeni na Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Povei"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Odspoji"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Podesi vezu"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internet veza i postava"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada emo podesiti %s vezu."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7422,12 +7496,12 @@ msgstr ""
"\n"
"Pritisnite U redu za nastavak."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Mrene postavke"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7438,7 +7512,7 @@ msgstr ""
"Pritisnite U redu da zadrite postojee postavke, ili Odustani za ponovno "
"konfiguriranje vae mrene/Internet veze.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7451,72 +7525,72 @@ msgstr ""
"Ukoliko ne elite koristiti auto detekciju, odselektirajte kvadrati s "
"potvrdom.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Izaberite profil za konfiguriranje"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Koristi auto detekciju"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ekspertni mod"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Otkrivanje ureaja..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normalna modemska veza"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detektiran na portu %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN veza"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detektirano %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL veza"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detektirano na meusklopu %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kablovska veza"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "detektirana kablovska veza"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN veza"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet kartica(e) pronaene"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Izaberite vezu koju elite podesiti"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7526,23 +7600,23 @@ msgstr ""
"Molimo izaberite koji elite koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internet veza"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Da li elite pokreniti vau vezu kod svakog podizanja (boot) sustava ?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Mrene postavke"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Mrea treba biti ponovno pokrenuta"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7553,7 +7627,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7563,7 +7637,7 @@ msgstr ""
"\n"
"Konfiguracija e sada biti primjenjena na vaem sustavu.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7571,7 +7645,7 @@ msgstr ""
"Nakon to je to napravljeno, preporuamo da ponovno pokrenete vae X\n"
"okruje kako bi izbjegli probleme prilikom promjene imena raunala."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7582,7 +7656,7 @@ msgstr ""
"ili mcca. Ako vaa veza ne radi, moda ete morati ponovno pokrenuti\n"
"konfiguraciju"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7594,7 +7668,7 @@ msgstr ""
"Jednostavno prihvatite ovaj ureaj konfiguriran.\n"
"Promjena polja nie e prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7604,42 +7678,42 @@ msgstr ""
"Svaka stavka treba biti unesena kao IP adresa odvojena\n"
"tokama (npr. 1.2.3.4)"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Podeavam mreni ureaj %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (upravljaki program %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmaska"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatski IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Pokrenuto pri podizanju"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti oblika 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7651,42 +7725,53 @@ msgstr ""
"primjerice mojeracunalo.odjel.domena.hr.\n"
"Takoer unesite IP adresu gateway raunala ako gateway postoji"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS posluitelj"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (npr. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway ureaj"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti oblika 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti oblika 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Postava proxy-a"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Prati id mrene kartice (korisno za laptope)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy treba biti ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url treba poeti sa 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9204,7 +9289,7 @@ msgstr "Ispis na pisau \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9749,11 +9834,6 @@ msgstr ""
"Molimo unesite ftp proxy informacije\n"
"Ostavite prazno ukoliko ne elite ftp proxy"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url treba poeti sa 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9801,6 +9881,43 @@ msgstr "mkraid nije uspio (moda niste instalirali raidtools alate?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Sigurnosna razina"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sigurnosna razina"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Udaljeno administriranje"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Uobiajeno)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Podeavam sigurnosni nivo"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Molimo priekajte, Pripremam instalaciju"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA (Naprednu Linux Zvunu Arhitekturu) zvuni sustav"
@@ -10109,7 +10226,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sustav"
@@ -10206,7 +10323,7 @@ msgstr "Spoji se na Internet"
#: ../../share/advertising/03-internet.pl_.c:10
#, fuzzy
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10266,7 +10383,7 @@ msgstr "Korisnika suelja"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10295,7 +10412,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Uinite od svog raunala moni posluitelj sa samo nekoliko pritisaka na "
@@ -10314,7 +10431,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -10330,7 +10447,7 @@ msgstr ""
#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Potpun raspon Linux rjeenja, kao i posebne ponude proizvoda i 'goodiesa', "
"sudostupni online preko nae e-trgovine"
@@ -10381,8 +10498,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -10418,11 +10535,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
@@ -10472,16 +10589,6 @@ msgstr "Dodaj korisnika"
msgid "Add/Del Clients"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Pomo"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10535,53 +10642,68 @@ msgstr "Dodaj korisnika"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Podeavam..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Napredne postavke"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "ponovno postavi"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Molim, umetnite Boot disketu u pogon %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Disketni pogon nije dostupan"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10730,13 +10852,13 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "ukupni progres"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10745,41 +10867,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Bez lozinke"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Ne mogu otvoriti %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10790,65 +10912,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Sigurnosna pohrana sustavskih datoteka"
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Sigurnosna pohrana datoteka na tvrdom disku..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Sigurnosna pohrana korisnikih datoteka"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Progres sigurnosne pohrane tvrdog diska"
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Sigurnosna pohrana drugih datoteka"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Koristi vrpcu za pohranu"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10856,7 +10978,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10865,7 +10987,7 @@ msgstr ""
"popis datoteka poslan FTPom: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
#, fuzzy
msgid ""
"\n"
@@ -10876,39 +10998,39 @@ msgstr ""
"(!) problem sa FTP vezom: nije bilo mogue poslati vae pohranjene "
"datotekeFTPom.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Greka prilikom itanja datoteke %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Odabir datoteka"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberi datoteke ili mape i stisni 'Dodaj'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10916,26 +11038,26 @@ msgstr ""
"\n"
"Provjerite sve opcije koje trebate.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ove opcije mogu pohraniti i povratiti sve datoteke u vaoj /etc mapi.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Sigurnosno pohranjivanje vaih sustavskih datoteka ( /etc mapa )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalno pohranjivanje (ne zamjenjuje staru pohranu)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Izostavi kritine datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10943,133 +11065,135 @@ msgstr ""
"S ovom opcijom moi ete povratiti bilo koju inaicu\n"
"vaeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Odaberite sve korisnike koje elite ukljuiti u pohranu."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Izostavi cache preglednika (browsera)"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalnu pohranu (ne zamjenjuje stare pohrane)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windowse (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za pohranu"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Upiite ime hosta ili IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "Upiite mapu na ovom hostu u koju ete staviti pohranu."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Upiite svoje korisniko ime"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Upiite svoju lozinku"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Zapamti ovu lozinku"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za pohranu"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Izaberite prostor na CDu"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Naznaite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Naznaite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Naznaite da li prethodno elite obrisati va CDRW"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Naznaite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Naznaite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11077,36 +11201,36 @@ msgstr ""
"Upiite ime vaeg CD snimaa\n"
" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Odaberite datoteku"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Koristi vrpcu za pohranu"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Upiite ime ureaja kojeg ete koristiti za sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Naznaite da li prethodno elite obrisati va CDRW"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Naznaite da li prethodno elite obrisati va CDRW"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Naznaite da li prethodno elite obrisati va CDRW"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11114,57 +11238,57 @@ msgstr ""
"Upiite maksimalnu dozvoljenu\n"
" veliinu za Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Upiite mapu za snimanje:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Koristi quotu za pohranjene datoteke"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Mrea"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Tvrdi disk / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Vrsta"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "svaki sat"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "svaki dan"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "svaki tjedan"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "svaki mjesec"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Koristi daemon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11172,13 +11296,13 @@ msgstr ""
"Izaberite vremenski razmak izmeu\n"
"dvije sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Izaberite medij za pohranu."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11186,71 +11310,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Osigurajte da je cron daemon ukljuen u vae servise"
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Ovjde poalji izvjetaj mailom poslije svake pohrane:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "to"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Jo opcija"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Drakbackup postava"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Izaberite gdje elite pohranjivati"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "na tvrdi disk"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "preko mree"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Izaberite to elite pohranjivati"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Pohrani sustav"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Pohrani korisnike"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Runo izaberi korisnika"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11258,7 +11382,7 @@ msgstr ""
"\n"
"Izvori za pohranu: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11266,7 +11390,7 @@ msgstr ""
"\n"
"- Sustavske datoteke:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11274,7 +11398,7 @@ msgstr ""
"\n"
"- Korisnike datoteke:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11282,7 +11406,7 @@ msgstr ""
"\n"
"- Druge datoteke:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11291,32 +11415,32 @@ msgstr ""
"\n"
"- Snimi na tvrdi disk u putanju: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Ureaj mia: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11325,12 +11449,12 @@ msgstr ""
"\n"
"Snimi FTPom na host: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11339,7 +11463,7 @@ msgstr ""
"\n"
"Snimi FTPom na host: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11348,7 +11472,7 @@ msgstr ""
"\t\t korisniko ime: %s\n"
"\t\t u putanju: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11356,19 +11480,19 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tIzostavi sustavske datoteke\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tPohrana koristi tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tPohrana koristi tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11377,41 +11501,41 @@ msgstr ""
"\n"
"- Daemon (%s) ukljui :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Tvrdi disk.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Mreu FTPom.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Mreu SSHom.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Mreu FTPom.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Mreu FTPom.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Nema postavki, molimo izaberite arobnjaka ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11419,7 +11543,7 @@ msgstr ""
"Popis podataka za povrat:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11427,259 +11551,259 @@ msgstr ""
"Popis oteenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Molimo ponitite odabir ili ga uklonite idui put"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Pohranjene datoteke su oteene"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr " Svi vai izabrani podaci su "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Uspjeno povraeni na %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Povrati postavke "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "U redu da bi povratili ostale datoteke"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Popis korisnika za povrat (samo je najnoviji nadnevak vaan za svakog "
"korisnika)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Pohrani sustavske datoteke prije:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "izaberite nadnevak za povrat"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Koristi tvrdi disk za pohranu"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Upiite mapu za snimanje:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP veza"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Sigurna veza"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Povrati s tvrdog diska"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Upiite mapu u koju ste pohranili podatke"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij s kojeg ete povratiti podatke"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Ostali mediji"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Povrati sustav"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Povrati korisnike"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Povrati ostalo"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "izaberi putanju za povrat (umjesto / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Napravi novu sigurnosnu pohranu prije povrata (samo za inkrementalne "
"pohrane.)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Ukloni mape korisnika prije povrata."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Povrati ostalo"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Pohranjene datoteke su oteene"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Povrati s tvrdog diska"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Vrati particijsku tabelu"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Povrati korisnike"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Ime raunala"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Lozinka"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Korisniko ime"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Ime raunala: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Povrati ostalo"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Povrati sve pohrane"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Prilagoena pohrana"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Vrati particijsku tabelu"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Povrati korisnike"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Prijanje"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Snimi"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Sloi sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Povrati"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -11690,14 +11814,14 @@ msgstr ""
" va mail sa izvjetajem nije poslan\n"
" molimo podesite sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Slijedei paketi e biti instalirani"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -11706,19 +11830,19 @@ msgstr ""
"Greka tijekom slanja datoteke putem FTPa.\n"
" Ispravite svoje FTP postavke."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Izaberite podatke za povrat"
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Izaberite medij za sigurnosnu pohranu..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Izaberite podatke koje ete pohraniti..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11726,59 +11850,59 @@ msgstr ""
"Nije pronaena datoteka s postavkama \n"
"pritisnite arobnjaka ili Napredno."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Razvija se ... molimo saekajte."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Pohrani sustavske datoteke"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Pohrani korisnike datoteke"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Pohrani ostale datoteke"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Ukupni progres"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "slanje datoteka FTPom"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "aljem datoteke..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Pohrani iz datoteke sa postavkama"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Pogledaj postavke sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Postavke arobnjaka"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Napredne postavke"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Pohrani sada"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
#, fuzzy
msgid ""
"options description:\n"
@@ -11839,7 +11963,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11853,7 +11977,7 @@ msgstr ""
" namjesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11931,7 +12055,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
#, fuzzy
msgid ""
"restore description:\n"
@@ -11984,18 +12108,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -12025,7 +12149,7 @@ msgstr ""
"sa ovim programom; ako ne, piite na Free Software Foundation,\n"
"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12103,7 +12227,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12121,7 +12245,7 @@ msgstr ""
"no to je poaljete posluitelju.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12142,7 +12266,7 @@ msgstr ""
"mapu, i izgubit ete sve podatke. Vano je biti\n"
"oprezan i ne mijenjati podatke u pohrani runo.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12262,8 +12386,8 @@ msgstr ""
# ../../share/compssUsers
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konzolni Alati"
@@ -12340,28 +12464,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "port"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Post deinstalacija"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshotovi e biti raspoloivi poslije instalaciju u %s"
@@ -12463,10 +12587,6 @@ msgstr "arobnjak..."
msgid "Apply"
msgstr "Primjeni"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo priekajte... Primjenjujem konfiguraciju"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Povezan"
@@ -12588,7 +12708,7 @@ msgstr "Ime modula"
msgid "Size"
msgstr "Veliina"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12653,12 +12773,12 @@ msgstr "Ispis"
msgid "Build the disk"
msgstr "Napravi disk"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Uvjerite se da je medij\tprisutan za ureaj %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12667,12 +12787,12 @@ msgstr ""
"Ne postoji medij za ureaj %s.\n"
"Molimo ubacite jedan."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne mogu napraviti fork: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13157,158 +13277,158 @@ msgstr ""
"\n"
"Kliknite na Postavke ukoliko elite pokreniti arobnjak za postavljanja."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Radna grupa"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "particija %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Korisnik"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Obrii"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Gotov"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Dodaj modul"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Dodaj novi pisa"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Odselektiraj sve"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Prihvati korisnika"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Inaica: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Koristi auto detekciju"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Koristi auto detekciju"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Spremi odabir paketa"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Korisnik"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Radna grupa"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nema TV kartice!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
#, fuzzy
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
@@ -13329,137 +13449,147 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "pravljenje boot diskete"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Rezolucija"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Izaberite datoteku"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Ime sharea"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Postava nakon instalacije"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Zavri"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Instaliraj sustav"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Podeavanje servisa"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "ureaj"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "ureaj"
+msgid "Save theme"
+msgstr "Instaliraj sustav"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Odaberite monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Izabir modela pisaa"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Morate izabrati/upisati pisa/ureaj!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Otkrivanje ureaja ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13604,6 +13734,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "uporaba: keyboarddrake [--exper] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uporaba: keyboarddrake [--exper] [keyboard]\n"
@@ -13633,11 +13770,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ne mogu pokrenuti ivu nadogradnju !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "Promjena je izvrena, ali da bi imala uinak, morate se odlogirati"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13922,16 +14059,13 @@ msgstr ""
"Moete sada skenirati dokumente koritenjem ''XSanea'' izMultimedija/Grafika "
"u aplikacijskom izborniku."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -14006,7 +14140,7 @@ msgstr "Instaliraj dogradnje sustava"
msgid "Exit install"
msgstr "Izlaz iz instalacije"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
@@ -14285,6 +14419,21 @@ msgstr "Multimedija - CD prenje"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Postava nakon instalacije"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy treba biti ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Zavri"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -14842,9 +14991,6 @@ msgstr "Znanstvena radna stanica"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "Podeavam sigurnosni nivo"
-
#~ msgid "Select a graphics card"
#~ msgstr "Odaberite grafiku karticu"
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index 15ce425d7..b2b49985a 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -1,4 +1,4 @@
-# Instal Grafis Mandrake
+# Instalator Grafis Mandrake
# Copyright (C) 1999 Mandrakesoft
# Budi Rachmanto <rac@linux-mandrake.com>, 2001-2002
# Linux Indonesia <http://www.linux.or.id>, 1999-2001
@@ -9,8 +9,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
-"PO-Revision-Date: 2002-08-17 22:55+09:00\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
+"PO-Revision-Date: 2002-09-08 11:57+0900\n"
"Last-Translator: Budi Rachmanto <rac@linux-mandrake.com>\n"
"Language-Team: Bahasa Indonesia <id@li.org>\n"
"MIME-Version: 1.0\n"
@@ -94,24 +94,24 @@ msgstr "Konfigurasikan semua head secara terpisah"
msgid "Use Xinerama extension"
msgstr "Gunakan ekstensi Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurasikan hanya kartu \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s dengan akselerasi hardware 3D"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -121,17 +121,17 @@ msgstr ""
"XFree %s.\n"
"Kartu Anda ini dapat dipakai pada XFree %s yg punya dukungan baik dalam 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s dengan akselerasi hardware 3D PERCOBAAN"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -142,7 +142,7 @@ msgstr ""
"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG.\n"
"Kartu Anda ini dapat digunakan XFree %s yang lebih baik dalam 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,12 +151,12 @@ msgstr ""
"Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s,\n"
"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalasi driver display)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Customized"
@@ -176,32 +176,32 @@ msgstr "Resolusi"
msgid "Test"
msgstr "Tes"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Pilihan"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Keluar"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -232,7 +232,7 @@ msgstr "Pembuat"
#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+msgstr "Probe Plug'n Play gagal. Pilihlah monitor yang benar"
#: ../../Xconfig/monitor.pm_.c:114
msgid ""
@@ -297,25 +297,25 @@ msgstr "Pilih resolusi dan kedalaman warna"
msgid "Graphics card: %s"
msgstr "Kartu grafis: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Batal"
@@ -328,9 +328,8 @@ msgid "Do you want to test the configuration?"
msgstr "Anda ingin tes konfigurasi ini?"
#: ../../Xconfig/test.pm_.c:31
-#, fuzzy
msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Awas: tes kartu grafis ini dapat membekukan komputer Anda"
+msgstr "Awas: pengujian kartu grafis ini dapat membekukan komputer"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -392,11 +391,11 @@ msgstr "Server XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Antarmuka grafis saat startup"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -405,7 +404,7 @@ msgstr ""
"Komputer Anda bisa diset agar menjalankan X saat booting.\n"
"Anda mau fasilitas ini?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -425,7 +424,7 @@ msgstr ""
"\n"
"Anda punya fitur ini?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Norm apa yg digunakan TV Anda?"
@@ -497,7 +496,7 @@ msgstr "Kompak"
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Mode video"
@@ -505,17 +504,17 @@ msgstr "Mode video"
msgid "Delay before booting default image"
msgstr "Delay sebelum boot ke image default"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Katasandi"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Katasandi (lagi)"
@@ -550,14 +549,14 @@ msgid ""
msgstr ""
"Pilihan ``Batasi parameter command line'' tidak ada gunanya tanpa katasandi"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Silakan ulangi"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Katasandi tidak sama"
@@ -599,7 +598,7 @@ msgstr ""
"\n"
"Di drive mana Anda boot?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -607,148 +606,148 @@ msgstr ""
"Ini adalah entri yang lain lagi.\n"
"Anda boleh tambahkan atau mengubah yang sudah ada."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Tambah"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Selesai"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modifikasi"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Tipe entri mana yang hendak ditambahkan?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "OS Lain (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "OS Lain (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "OS Lain (Mindows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Sambung"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Tak aman"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Default"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-size"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Hapus entri"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Label tidak boleh kosong"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Anda harus tentukan image kernel"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Anda harus tentukan partisi swap"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Label ini sudah dipakai"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Ditemukan interface %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Anda punya lagi?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Punya antarmuka %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Tidak"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ya"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Lihat info hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Menginstal driver untuk kartu %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -757,7 +756,7 @@ msgstr ""
"Anda dapat memberikan opsi terhadap modul %s.\n"
"Ingat, semua alamat harus diisikan dengan awalan 0x misalnya '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -768,17 +767,17 @@ msgstr ""
"Parameter biasanya dalam format ``nama=nilai nama2=nilai2...''.\n"
"Misalnya, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Pilihan Modul:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Driver %s mana yang harus saya coba?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -794,15 +793,15 @@ msgstr ""
"biarkan saja drivernya melakukan deteksi sendiri parameternya? Deteksi\n"
"otomatis bisa membuat komputer hang), tapi tak merusak."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Probe otomatis"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Tentukan opsi"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -811,63 +810,61 @@ msgstr ""
"Module %s gagal diload.\n"
"Mau coba lagi dengan parameter yang lain?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "akses ke program X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "akses ke peralatan rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "izinkan \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "akses ke file administratif"
-#: ../../any.pm_.c:754
-#, fuzzy
+#: ../../any.pm_.c:755
msgid "access to network tools"
-msgstr "akses ke peralatan rpm"
+msgstr "akses ke peralatan jaringan"
-#: ../../any.pm_.c:755
-#, fuzzy
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
-msgstr "akses ke peralatan rpm"
+msgstr "akses ke peralatan kompilasi"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(sudah ditambahkan %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Katasandi ini terlalu sederhana"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Silakan tulis nama user"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Nama user hanya boleh terdiri dari huruf, angka, `-' dan `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Nama user terlalu panjang"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "User ini sudah ada sebelumnya"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Tambah user"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -876,32 +873,32 @@ msgstr ""
"Masukkan user\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Buat user"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nama Lengkap"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nama user"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -909,54 +906,54 @@ msgstr ""
"Komputer Anda dapat diset agar secara otomatis login dg satu user.\n"
"Anda ingin pakai feature ini?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Pilih user default:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Pilih manajer window yg akan dipakai:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Pilih bahasan yg akan dipakai."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Anda bisa pilih bahasa lain yang akan tersedia setelah install selesai"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Semua"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Izinkan semua user"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Tiada pemakaian bersama"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s perlu diupgrade. Anda ingin instal?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Anda dapat mengekspor dg NFS atau Samba. Pilih yg Anda ingin."
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Paket wajib %s hilang"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -970,11 +967,11 @@ msgstr ""
"\n"
"\"Custom\" memungkinkan tuning masing-masing user.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Luncurkan userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -982,31 +979,31 @@ msgstr ""
"Sharing per-user menggunakan grup \"fileshare\". \n"
"Anda dapat memakai userdrake utk menambah user di grup ini."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Selamat Datang di Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Lemah"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standar"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Kuat"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Lebih Kuat"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Pengecut"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1017,13 +1014,13 @@ msgstr ""
"mesin yang terhubung ke mesin lain atau ke ke Internet. Tidak akan ada\n"
"akses katasandi."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr "Katasandi akan diaktifkan, tapi mohon jangan disambungkan ke jaringan."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1031,7 +1028,7 @@ msgstr ""
"Ini adalah sekuriti standar, dianjurkan untuk komputer yang akan\n"
"terkoneksi ke Internet sebagai klien."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1039,7 +1036,7 @@ msgstr ""
"Sudah ada beberapa batasan, dan beberapa pengecekan otomatis berjalan tiap "
"malam."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1052,7 +1049,7 @@ msgstr ""
"Sekuriti kini cukup tinggi untuk dapat melayani koneksi banyak klien.\n"
"Jika mesin Anda hanya berfungsi sebagai klien, pilihlah level lebih rendah."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1060,32 +1057,32 @@ msgstr ""
"Sama dengan level sebelumnya, tapi sistem sepenuhnya ditutup.\n"
"Fitur sekuriti maksimum."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "Opsi Dasar DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Pilih tingkat keamanan yg Anda inginkan"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Tingkat keamanan"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Gunakan libsafe utk server"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Library penahan serangan string format dan overflow buffer"
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Admin Keamanan (login / email)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1100,7 +1097,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1125,58 +1122,58 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Selamat datang di sang pemilih sistem operasi, GRUB"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Gunakan tombol %c dan %c untuk memilih entri yang disorot"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tekan enter untuk memboot OS yang terpilih, atau tekan 'e' untuk edit"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "perintah sebelum booting, atau 'c' untuk command line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Entri yang dipilih akan diboot secara otomatis dalam %d detik."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "tak cukup ruang di /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Anda tak dapat menginstal bootloader pada partisi %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "belum ada help.\n"
@@ -1228,64 +1225,63 @@ msgstr "mode Lilo/Grub"
msgid "Yaboot mode"
msgstr "mode Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Instal tema"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Display tema di konsol"
-#: ../../bootlook.pm_.c:150
-#, fuzzy
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
-msgstr "Membuat partisi baru"
+msgstr "Buat tema baru"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Backup %s ke %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Ada Kesalahan"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "gagal mem-backup pesan lilo"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Salin %s ke %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "tak dapat mengubah pesan lilo"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Pesan lilo tak ditemukan"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Tak dapat menulis /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Tulis %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1293,17 +1289,17 @@ msgstr ""
"Tak dapat menulis /etc/sysconfig/bootsplash\n"
"File tak ditemukan."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Tak dapat meluncurkan mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Buat initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1312,45 +1308,45 @@ msgstr ""
"Luncurkan \"lilo\" sbg root di baris perintah utk menyelesaikan instalasi "
"tema LiLo."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Luncur ulang 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Catatan"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Instalasi tema LiLo dan Bootsplash sukses"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Instalasi tema gagal!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Manajer Boot: %s. Klik Configure untuk memanggil ahli setup."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurasikan"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Pilihan Splash"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Tema"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1364,44 +1360,44 @@ msgstr ""
"Anda dapat memilih\n"
"secara terpisah"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Layar lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Mode sistem"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Jalankan X-Window saat sistem dimulai"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Tidak, saya tak mau autologin"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ya, saya mau autologin dg (user,desktop) ini"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "gagal baca file /etc/inittab: %s"
@@ -1498,50 +1494,58 @@ msgstr "Austria"
msgid "United States"
msgstr "Amerika Serikat"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Baru"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Unmount"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Mount"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Posisi mount"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Masukkan URL server WebDAV"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "URL harus dimulai dg http:// atau https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Posisi mount: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Pilihan: %s"
@@ -1594,9 +1598,8 @@ msgid "Details"
msgstr "Detil"
#: ../../diskdrake/hd_gtk.pm_.c:252
-#, fuzzy
msgid "No hard drives found"
-msgstr "Printer tak ditemukan!"
+msgstr "Harddisk tak ditemukan"
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
@@ -1628,7 +1631,7 @@ msgstr "Kosong"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Lainnya"
@@ -1770,7 +1773,7 @@ msgstr ""
"Backup tabel partisi tidak memiliki ukuran yg sama\n"
"Jalan terus?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Awas"
@@ -2235,7 +2238,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm_.c:1150
msgid "Read-only"
-msgstr ""
+msgstr "Baca-saja"
#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
@@ -2245,7 +2248,7 @@ msgstr "Ukuran: %s\n"
#: ../../diskdrake/interactive.pm_.c:1152
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Ukuran: %s silinber, %s head, %s sektor\n"
+msgstr "Ukuran: %s silinder, %s head, %s sektor\n"
#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
@@ -2302,7 +2305,7 @@ msgstr "Klik salah satu media"
#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
msgid "Can't login using username %s (bad password?)"
-msgstr "Gagal login dg nama user %s (katakunci salah?)"
+msgstr "Gagal login dg nama user %s (katasandi salah?)"
#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
msgid "Domain Authentication Required"
@@ -2319,11 +2322,11 @@ msgstr "Nama user yang mana"
#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
"Please enter your username, password and domain name to access this host."
-msgstr "Masukkan nama user, katakunci dan nama domain utk mengakses host ini."
+msgstr "Masukkan nama user, katasandi dan nama domain utk mengakses host ini."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
-msgstr "Nama user"
+msgstr "Nama pengguna"
#: ../../diskdrake/smbnfs_gtk.pm_.c:180
msgid "Domain"
@@ -2333,23 +2336,23 @@ msgstr "Domain"
msgid "Search servers"
msgstr "Cari Server"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s proses format dari %s gagal"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "tidak bisa melakukan format %s dengan tipe %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "penyambungan partisi %s ke direktori %s gagal"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "error melepas mount %s: %s"
@@ -2367,7 +2370,7 @@ msgid "server"
msgstr "server"
#: ../../fsedit.pm_.c:240
-#, fuzzy, c-format
+#, c-format
msgid ""
"I can't read the partition table of device %s, it's too corrupted for me :(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
@@ -2376,7 +2379,7 @@ msgid ""
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-"Tabel partisi rusak tak terbaca :(\n"
+"Tabel partisi %s rusak tak terbaca :(\n"
"Partisi buruk dapat dicoba dihapus (SEMUA DATA AKAN HILANG!).\n"
"Solusi lainnya adalah melarang DrakX memodifikasi tabel partisi.\n"
"(pesan errornya adalah %s)\n"
@@ -2435,48 +2438,110 @@ msgstr "Tiada yang dikerjakan"
msgid "Error opening %s for writing: %s"
msgstr "error membuka file %s untuk ditulisi: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
-msgstr ""
+msgstr "Tiada driver alternatif"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
+"Tak diketahui adanya driver alternatif OSS/ALSA utk kartu suara Anda (%s)"
-#: ../../harddrake/sound.pm_.c:158
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
-msgstr "konfigurasi CUPS"
+msgstr "Konfigurasi suara"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
+"Di sini dapat dipilih driver alternatif (OSS atau ALSA) utk kartu suara Anda "
+"(%s)"
-#: ../../harddrake/sound.pm_.c:162
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
-msgstr "Driver"
+msgstr "Driver:"
+
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Pertolongan"
-#: ../../harddrake/sound.pm_.c:173
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Tunggu, konfigurasi sedang diterapkan..."
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Tunggulah"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
-msgstr "Driver X"
+msgstr "Tiada driver yg diketahui"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
-msgstr ""
+msgstr "Tak diketahui adanya driver utk kartu suara Anda (%s)"
-#: ../../harddrake/sound.pm_.c:177
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
-msgstr "Model tak dikenal"
+msgstr "Driver tak dikenal"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2485,6 +2550,11 @@ msgid ""
"<install at mandrakesoft dot com>\n"
"with subject: unlisted sound driver \"%s\""
msgstr ""
+"Driver \"%s\" kartu suara Anda tak terdaftar\n"
+"\n"
+"Mohon kirimkan keluaran perintah \"lspcidrake -v\" ke\n"
+"<install at mandrakesoft dot com>\n"
+"dengan subject: unlisted sound driver \"%s\""
#: ../../harddrake/ui.pm_.c:16
msgid "Model"
@@ -2586,20 +2656,20 @@ msgid "the vendor name of the device"
msgstr "nama pembuat device"
#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
msgid "Alternative drivers"
-msgstr "Halaman tes alternatif (A4)"
+msgstr "Driver alternatif"
#: ../../harddrake/ui.pm_.c:39
msgid "the list of alternative drivers for this sound card"
-msgstr ""
+msgstr "daftar driver alternatif untuk kartu suara ini"
#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Keluar"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Tolong"
@@ -2620,14 +2690,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Laporan Bug"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_About..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Tentang Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2635,56 +2709,53 @@ msgstr ""
"Inilah HardDrake, alat konfigurasi hardware Mandrake.\n"
"Versi:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Pengarang:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 versi "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Hardware terdeteksi"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Info"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Konfigurasi modul"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Jalankan alat konfigurasi"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Pendeteksian sedang berjalan"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Tunggulah"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Konfigurasi tiap parameter modul dapat dilakukan di sini."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Jalankan \"%s\"..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr ""
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "Penyalaan kelas %s\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "primer"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "sekunder"
@@ -3181,7 +3252,6 @@ msgstr ""
"jika Anda gagal mengkonfigurasi display."
#: ../../help.pm_.c:246
-#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3222,7 +3292,7 @@ msgstr ""
"berisi sejumlah alat utk mereparasi sistem yg rusak karena kegagalan power,\n"
"salah ketik, alpa kata sandi, dan lain-lain.\n"
"\n"
-"Bila step ini diklik, Anda akan diminta memasukkan disket ke drive. Disket\n"
+"Jika \"Ya\", Anda akan diminta memasukkan disket ke drive. Disket\n"
"harus kosong / berisi data yg tak Anda perlukan. Tak perlu diformat sebab\n"
"DrakX akan menulis ulang seluruh disket."
@@ -4432,7 +4502,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Anda harus juga memformat %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4454,7 +4524,7 @@ msgstr ""
"\n"
"Jadi instal server ini?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4462,21 +4532,25 @@ msgid ""
"\n"
"Do you really want to remove these packages?\n"
msgstr ""
+"Paket berikut akan dihapus agar sistem Anda dapat di-upgrade: %s\n"
+"\n"
+"\n"
+"Benarkah Anda ingin menghapus paket tersebut?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Tanpa domain NIS, broadcast tak dapat dipakai"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Masukkan disket yang sudah diformat dengan tipe FAT di drive %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Disket ini tak diformat dengan sistem FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4484,12 +4558,12 @@ msgstr ""
"Untuk menggunakan pilihan paket yang sudah disimpan sebelumnya, bootlah "
"instalasi dengan pilihan ''linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Error saat membaca file %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4728,7 +4802,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Selamat Datang di %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Tidak ada floppy drive"
@@ -4757,11 +4831,11 @@ msgstr "Kelas Instalasi"
msgid "Please choose one of the following classes of installation:"
msgstr "Pilihlah kelas instalasi berikut:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Pilihan Grup Paket"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Pilih paket sendiri"
@@ -4837,7 +4911,7 @@ msgstr "Tunjukkan paket yang sudah dipilih secara otomatis"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instal"
@@ -4857,7 +4931,7 @@ msgstr "Instalasi minimal"
msgid "Choose the packages you want to install"
msgstr "Pilih paket yang akan diinstal"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instalasi"
@@ -4884,17 +4958,17 @@ msgid "Installing package %s"
msgstr "Instalasi paket %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Terima"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Tolak"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4909,16 +4983,16 @@ msgstr ""
"tekan Batal untuk menghindari instalasi dari Cd-Rom ini."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Jalan terus?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Ada error mengurutkan paket:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Ada error saat instalasi paket:"
@@ -5048,7 +5122,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5166,7 +5240,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5243,7 +5317,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Benarkah Anda menolak lisensi?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Keyboard"
@@ -5447,11 +5521,11 @@ msgstr "Masukkan disket yg berisi seleksi paket"
msgid "Selected size is larger than available space"
msgstr "Ukuran terpilih melebihi area yg ada"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Tipe instalasi"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5459,19 +5533,19 @@ msgstr ""
"Anda belum memilih grup paket.\n"
"Pilih instalasi minimal yang Anda ingin:"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Dengan X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Dengan dokumentasi dasar (disarankan!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Sungguh instalasi minimal (khususnya tanpa urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5481,16 +5555,16 @@ msgstr ""
"Kalau tak punya sama sekali, click Cancel.\n"
"Kalau cuma punya beberapa aja, pilih aja, trus klik Ok."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Label CD-ROM \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Sedang menyiapkan instalasi"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5499,21 +5573,21 @@ msgstr ""
"Instalasi paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Konfigurasi instalasi akhir"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Masukkan floppy boot ke drive %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Masukkan disket Update Modules ke drive %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5580,7 +5654,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5598,154 +5672,154 @@ msgstr ""
"\n"
"Ingin instal update ?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Mandrake Linux sedang dihubungi untuk mengambil daftar mirror"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Pilih mirror tempat Anda ingin mengambil paket program"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Saya sedang mencek mirror untuk mengambil daftar paket yang tersedia"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Pilih zonawaktu Anda"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Jam hardware diset ke GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "sinkronisasi waktu otomatis (dg NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Server NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Server CUPS remote"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Tidak ada printer"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Anda punya kartu suara ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Jalankan \"sndconfig\" setelah instalasi untuk konfigurasi kartu suara"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Kartu suara tak terdeteksi. Coba \"harddrake\" setelah instalasi"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ringkasan"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Zonawaktu"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Kartu ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Kartu suara"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Kartu TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Domain Mindows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "File lokal"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Set katasandi root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Tiada katasandi"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Katasandinya terlalu mudah (harus paling tidak %d karakter)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Otentikasi"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Otentikasi LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "Basis dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Otentikasi NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Domain NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5763,28 +5837,28 @@ msgstr ""
"Agar ini dapat bekerja dg PDC W2K, Anda mungkin perlu minta tolong admin "
"menjalankan: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
"everyone / add dan me-reboot server.\n"
-"Anda mungkin juga perlu namauser/katakunci Admin Domain utk mengikutkan "
+"Anda mungkin juga perlu namauser/katasandi Admin Domain utk mengikutkan "
"mesin ke domain Mindows(TM).\n"
"Jika jaringan belum aktif, Drakx akan mencoba ikut domain setelah tahapan "
"setup jaringan.\n"
"Jika setup dan otentikasi domain gagal, jalankan 'smbpasswd -j DOMAIN -U USER"
-"%PASSWORD' menggunakan Domain Mindows(tm) Anda, dan Namauser/Katakunci "
+"%PASSWORD' menggunakan Domain Mindows(tm) Anda, dan Namauser/Katasandi "
"Admin, setelah boot system.\n"
"Perintah 'wbinfo -t' akan mengetes apakah rahasia otentikasi Anda baik."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Otentikasi Domain Mindows"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Nama User Admin Domain"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
-msgstr "Katakunci Admin Domain"
+msgstr "Katasandi Admin Domain"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5809,19 +5883,19 @@ msgstr ""
"merecover sistem dari kegagalan. Jika Anda mau bikin bootdisk, masukkan\n"
"disket ke drive pertama dan tekan \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Drive disket Pertama"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Drive disket kedua"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Lewatkan"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5844,7 +5918,7 @@ msgstr ""
"memudahkan kita untuk merecover sistem dari kegagalan. Ingin buat bootdisk?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5858,28 +5932,28 @@ msgstr ""
"pembuatan bootdisk di disket 1.44 Mb mungkin gagal,\n"
"karena XFS perlu driver amat besar)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Tiada floppy drive tersedia"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Pilih drive floppy untuk membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Masukkan disket ke %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Membuat bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5891,11 +5965,11 @@ msgstr ""
"Instal akan berlanjut, tapi Anda perlu memakai\n"
"BootX utk mem-boot mesin Anda"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Ingin pakai aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5903,15 +5977,15 @@ msgstr ""
"Ada error saat install aboot,\n"
"paksakan instalasi walau merusak partisi awal?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Instalasi bootloader"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalasi bootloader gagal. Ada kesalahan berikut:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5928,17 +6002,17 @@ msgstr ""
" kemudian: shut-down\n"
"Anda akan melihat prompt bootloader pada boot selanjutnya."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Masukkan disket kosong di drive %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Lagi buat disket auto install"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5948,7 +6022,7 @@ msgstr ""
"\n"
"Anda ingin keluar sekarang?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5980,15 +6054,15 @@ msgstr ""
"Informasi untuk konfigurasi sistem juga tersedia di \n"
"bab Instalasi akhir di Buku Petunjuk Resmi Linux Mandrake."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Buat floppy instalasi otomatis"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6002,15 +6076,15 @@ msgstr ""
"\n"
"Mungkin Anda perlu mengulangi instalasinya.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Otomatis"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ulang"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Simpan pilihan paket"
@@ -6046,14 +6120,14 @@ msgstr "Tambahan"
msgid "Basic"
msgstr "Dasar"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Tahap sebelumnya"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Lanjut"
@@ -6199,9 +6273,8 @@ msgid "Belgian"
msgstr "Belgia"
#: ../../keyboard.pm_.c:177
-#, fuzzy
msgid "Bengali"
-msgstr "aktifkan"
+msgstr "Bengal"
#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
@@ -6216,9 +6289,8 @@ msgid "Brazilian (ABNT-2)"
msgstr "Brazil (ABNT-2)"
#: ../../keyboard.pm_.c:183
-#, fuzzy
msgid "Bosnian"
-msgstr "Estonia"
+msgstr "Bosnia"
#: ../../keyboard.pm_.c:184
msgid "Belarusian"
@@ -6242,7 +6314,7 @@ msgstr "Jerman (tanpa dead key)"
#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "Devanagari"
#: ../../keyboard.pm_.c:192
msgid "Danish"
@@ -6278,11 +6350,11 @@ msgstr "Yunani"
#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "Gujarat"
#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "Gurmukh"
#: ../../keyboard.pm_.c:205
msgid "Hungarian"
@@ -6314,7 +6386,7 @@ msgstr "Itali"
#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "Eskimo"
#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
@@ -6329,9 +6401,8 @@ msgid "Latin American"
msgstr "Amerika Latin"
#: ../../keyboard.pm_.c:218
-#, fuzzy
msgid "Laotian"
-msgstr "Latvia"
+msgstr "Laos"
#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
@@ -6359,20 +6430,19 @@ msgstr "Macedonia"
#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanmar (Burma)"
#: ../../keyboard.pm_.c:227
-#, fuzzy
msgid "Mongolian (cyrillic)"
-msgstr "Serbia (cyrillic)"
+msgstr "Mongol (cyrillic)"
#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "Malta (Inggris)"
#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "Malta (Amerika)"
#: ../../keyboard.pm_.c:230
msgid "Dutch"
@@ -6503,7 +6573,7 @@ msgstr "Kunci \"Mindows\" kanan"
msgid "Circular mounts %s\n"
msgstr "Mount melingkar %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Hapus dulu volume logiknya\n"
@@ -6563,9 +6633,8 @@ msgid "Genius NetScroll"
msgstr "Genius NetScroll"
#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
msgid "Microsoft Explorer"
-msgstr "Microsoft IntelliMouse"
+msgstr "microsoft Explorer"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
@@ -6639,22 +6708,21 @@ msgstr "tiada"
msgid "No mouse"
msgstr "Tidak pakai mouse"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Silakan tes mouse Anda"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Untuk mengaktifkan mouse,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
-msgstr "gerakkan rodanya!"
+msgstr "GERAKKAN RODANYA!"
#: ../../my_gtk.pm_.c:64
-#, fuzzy
msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
#: ../../my_gtk.pm_.c:159
msgid "Finish"
@@ -6684,11 +6752,11 @@ msgstr "Tutup Tree"
msgid "Toggle between flat and group sorted"
msgstr "Togel tampilan rata dan terurut grupnya"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Hubungan ke Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6698,53 +6766,43 @@ msgstr ""
"Namun ada juga yang menggunakan pptp, dan ada yang pakai dhcp saja.\n"
"Bila ragu, pilih saja 'gunakan pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "usb speedtouch Alcatel"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "gunakan dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "gunakan pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "gunakan pptp"
#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
msgid "Web Server"
-msgstr "Server"
+msgstr "Server Web"
#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
msgid "Domain Name Server"
-msgstr "Perumus Nama Domain"
+msgstr "Server Nama Domain"
#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
msgid "Mail Server"
-msgstr "Aktifkan Server"
+msgstr "Server Mail"
#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
msgid "POP and IMAP Server"
-msgstr "Server LDAP"
+msgstr "Server POP dan IMAP"
#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
msgid "No network card"
-msgstr "kartu jaringan tak ditemukan"
+msgstr "Tiada kartu jaringan"
#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
msgid ""
"drakfirewall configurator\n"
"\n"
@@ -6752,15 +6810,15 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"konfigurator tinyfirewall\n"
+"konfigurator drakfirewall\n"
"\n"
"Program ini mengkonfigurasi firewall pribadi sistem Linux Mandrake.\n"
"Untuk membuat solusi firewall yang lebih baik, cobalah\n"
-"distribusi Mandrake Security Firewall"
+"distribusi khusus MandrakeSecurity Firewall"
#: ../../network/drakfirewall.pm_.c:147
msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
+msgstr "Layanan apa yg Anda suka untuk akses dari Internet?"
#: ../../network/drakfirewall.pm_.c:148
msgid ""
@@ -6768,6 +6826,9 @@ msgid ""
"Valid examples are: 139/tcp 139/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
+"Anda dapat memasukkan berbagai port. \n"
+"Contoh lazim adalah: 139/tcp 139/udp.\n"
+"Informasi ada di /etc/services."
#: ../../network/drakfirewall.pm_.c:154
#, c-format
@@ -6776,15 +6837,17 @@ msgid ""
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535."
msgstr ""
+"Port tak berlaku: %s.\n"
+"Format yg benar adalah \"port/tcp\" atau \"port/udp\", \n"
+"sedangkan port berkisar dari 1 sampai 65535."
#: ../../network/drakfirewall.pm_.c:162
msgid "Everything (no firewall)"
-msgstr ""
+msgstr "Semua (tanpa firewall)"
#: ../../network/drakfirewall.pm_.c:164
-#, fuzzy
msgid "Other ports"
-msgstr "Tes port"
+msgstr "Port lain"
#: ../../network/ethernet.pm_.c:37
msgid ""
@@ -6815,7 +6878,7 @@ msgstr "Pilih adapter jaringan yang akan digunakan untuk terhubung ke Internet"
msgid "no network card found"
msgstr "kartu jaringan tak ditemukan"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Konfigureasi jaringan"
@@ -6830,15 +6893,15 @@ msgstr ""
"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
"misalnya ``mesinku.labku.kotaku.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Nama Host"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Wizard Konfigurasi Jaringan"
@@ -6886,8 +6949,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Konfigurasi lama (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Konfigurasi ISDN"
@@ -6923,23 +6986,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Protokol apa yang ingin Anda gunakan?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Tipe card mana yang Anda punya?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Saya tak tahu"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6954,19 +7022,19 @@ msgstr ""
"Bila Anda punya card PCMCIA, Anda harus mengetahui irq dan io kartu Anda "
"itu.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Batal"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Lanjut"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Manakah kartu ISDN Anda?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6974,7 +7042,7 @@ msgstr ""
"Saya mendeteksi adanya sebuah card ISDN PCI, tapi saya tidak tahu tipenya. "
"Silakan pilih card PCI tersebut pada layar berikutnya."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Tiada kartu PCI ISDN ditemukan. Pilihlah satu pd layar berikut."
@@ -7026,7 +7094,7 @@ msgstr "Server DNS Primer (boleh diisi/tidak)"
msgid "Second DNS Server (optional)"
msgstr "Server DNS Sekunder (boleh tidak diisi)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7034,7 +7102,7 @@ msgstr ""
"\n"
"Anda bisa putuskan atau konfigurasi koneksi yang ada sekarang."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7042,11 +7110,11 @@ msgstr ""
"\n"
"Anda bisa mengkonfigurasikan ulang koneksi ini"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Sekarang Anda sedang terhubung ke Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7054,32 +7122,32 @@ msgstr ""
"\n"
"Anda bisa sambungkan koneksi ke Internet atau mengkonfigurasikan ulang."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Anda sedang tidak terhubung ke Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Tersambung"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Putus"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Konfigurasikan koneksi"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Koneksi dan konfigurasi Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Kita akan mengkonfigurasi koneksi %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7098,12 +7166,12 @@ msgstr ""
"\n"
"Tekan OK utk mulai."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurasi Jaringan"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7114,7 +7182,7 @@ msgstr ""
"Silakan klik OK untuk rekonfigurasi ulang koneksi jaringan/internet ini, "
"atau batal jika Anda berubah pikiran.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7127,72 +7195,72 @@ msgstr ""
"Bila Anda tidak mau menggunakan deteksi otomatis, mohon untuk tidak memilih "
"checkbox.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Pilih profil yang hendak Anda konfigurasikan"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Gunakan deteksi otomatis"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Mode Ahli"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Mendeteksi alat..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Konfigurasi koneksi modem biasa "
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "dideteksi pada port %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Konfigurasi koneksi ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s telah terdeteksi"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Koneksi ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "telah dideteksi ada pada interface %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Konfigurasi jaringan kabel"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Koneksi kabel terdeteksi"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "konfigurasi LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ada kartu ethernet terdeteksi"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Pilih koneksi yg hendak dikonfigurasi"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7202,23 +7270,23 @@ msgstr ""
"Pilih yg ingin Anda pakai.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Koneksi Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Anda mau jalankan koneksi ini saat boot?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Konfigurasi jaringan"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Jaringan perlu di-start ulang"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7229,7 +7297,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7239,7 +7307,7 @@ msgstr ""
"\n"
"Konfigurasi akan diterapkan di sistem Anda.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7247,7 +7315,7 @@ msgstr ""
"Setelah itu, silakan restart X Anda agar bebas dari masalah pergantian\n"
"nama host."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7257,7 +7325,7 @@ msgstr ""
"Tes koneksi Anda via net_monitor atau mcc. Jika koneksi tak berjalan, Anda "
"mungkin perlu jalankan konfigurasi dari awal lagi"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7270,7 +7338,7 @@ msgstr ""
"Bila ingin menggantinya, silakan ganti isi pada kolom-kolom di konfigurasi "
"ini."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7280,42 +7348,42 @@ msgstr ""
"Tiap item harus diberikan sebagai alamat IP dalam notasi decimal\n"
"bertitik (misalnya 202.159.35.32)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurasi perangkat jaringan %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Alamat IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP otomatis"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Start saat boot"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Alamat IP harus dalam format 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7327,42 +7395,52 @@ msgstr ""
"misalnya ``mesin.lab.grup.com''.\n"
"Anda juga bisa masukkan alamat IP gateway kalau ada"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (mis. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Device gateway"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Alamat IP harus dalam format 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Alamat IP harus dalam format 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Konfigurasi proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Lacak ID kartu network (berguna di laptop)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy biasanya http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy biasanya ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url harus berawalan 'ftp:' atau 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7811,34 +7889,37 @@ msgid "Printerdrake"
msgstr "Printerdrake"
#: ../../printerdrake.pm_.c:178
-#, fuzzy
msgid "Checking your system..."
-msgstr "Mulai ulang sistem cetak ..."
+msgstr "Pengecekan sistem..."
#: ../../printerdrake.pm_.c:186
msgid ""
"There are no printers found which are directly connected to your machine"
-msgstr ""
+msgstr "Tiada printer yg ditemukan terhubung langsung ke mesin Anda"
#: ../../printerdrake.pm_.c:198
-#, fuzzy
msgid ""
"The following printers\n"
"\n"
-msgstr "Paket berikut akan dihapus"
+msgstr ""
+"Printer berikut\n"
+"\n"
#: ../../printerdrake.pm_.c:199
-#, fuzzy
msgid ""
"The following printer\n"
"\n"
-msgstr "Paket berikut akan dihapus"
+msgstr ""
+"Printer berikut\n"
+"\n"
#: ../../printerdrake.pm_.c:201
msgid ""
"\n"
"and one unknown printer are "
msgstr ""
+"\n"
+"dan satu printer tak dikenal "
#: ../../printerdrake.pm_.c:203
#, c-format
@@ -7846,29 +7927,36 @@ msgid ""
"\n"
"and %d unknown printers are "
msgstr ""
+"\n"
+"dan %d printer tak dikenal "
#: ../../printerdrake.pm_.c:207
msgid ""
"\n"
"are "
msgstr ""
+"\n"
+" "
#: ../../printerdrake.pm_.c:208
msgid ""
"\n"
"is "
msgstr ""
+"\n"
+" "
#: ../../printerdrake.pm_.c:210
-#, fuzzy
msgid "directly connected to your system"
-msgstr "Salin font di sistem Anda"
+msgstr "terhubung langsung dengan sistem Anda"
#: ../../printerdrake.pm_.c:213
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
+"\n"
+"Sebuah printer tak dikenal terhubung langsung dengan sistem Anda"
#: ../../printerdrake.pm_.c:215
#, c-format
@@ -7876,33 +7964,32 @@ msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
+"\n"
+"%d printer tak dikenal terhubung langsung dengan sistem Anda"
#: ../../printerdrake.pm_.c:221
-#, fuzzy
msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Pilihlah port tempat printer Anda terhubung."
+msgstr " (Pastikan semua printer Anda terhubung dan hidup).\n"
#: ../../printerdrake.pm_.c:235
msgid ""
"Do you want to enable printing on the printers mentioned above or on "
"printers in the local network?\n"
msgstr ""
+"Anda ingin mengaktifkan pencetakan di printer tersebut di atas atau printer "
+"di jaringan lokal?\n"
#: ../../printerdrake.pm_.c:236
-#, fuzzy
msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-"Ingin menset printer ini (\"%s\")\n"
-"sbg printer standar?"
+msgstr "Anda ingin mengaktifkan pencetakan di printer jaringan lokal?\n"
#: ../../printerdrake.pm_.c:238
-#, fuzzy
msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Anda mau jalankan koneksi ini saat boot?"
+msgstr "Anda ingin mengaktifkan pencetakan di printer tersebut di atas?\n"
#: ../../printerdrake.pm_.c:239
msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
+msgstr "Anda yakin ingin men-setup pencetakan di mesin ini?\n"
#: ../../printerdrake.pm_.c:240
#, c-format
@@ -7910,6 +7997,8 @@ msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
+"CATATAN: Akan diinstal piranti lunak tambahan hingga %d MB tergantung model "
+"printer dan sistem cetak."
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
@@ -7939,7 +8028,6 @@ msgstr ""
"printer."
#: ../../printerdrake.pm_.c:280
-#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7971,14 +8059,13 @@ msgstr ""
"harus terhubung dan dinyalakan.\n"
"\n"
"Ingat, deteksi printer jaringan membutuhkan waktu lebih lama daripada "
-"printer lokal yg terhubung langsung dg mesin ini. Jadi matikan deteksi "
-"printer jaringan dan/atau Mindows jika tak perlu.\n"
+"printer yg terhubung langsung dg mesin ini. Matikan deteksi printer jaringan "
+"dan/atau Mindows jika tak perlu.\n"
"\n"
" Klik \"Lanjut\" jika siap, dan \"Batal\" jika Anda tak ingin men-setup "
-"printer(s) sekarang."
+"printer sekarang."
#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
-#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7995,22 +8082,15 @@ msgstr ""
"\n"
"Selamat Datang di Dukun Setup Printer\n"
"\n"
-"Dukun ini menolong Anda menginstal printer yg terhubung dg komputer ini atau "
-"jaringan.\n"
+"Dukun ini menolong Anda menginstal printer yg terhubung dg komputer ini.\n"
"\n"
"Jika Anda punya printer terhubung dg mesin ini, hubungkan dan nyalakan "
-"sehingga ia/mereka dapat dideteksi. Juga printer jaringan harus terhubung "
-"dan dinyalakan.\n"
-"\n"
-"Ingat, deteksi printer jaringan membutuhkan waktu lebih lama daripada "
-"printer lokal yg terhubung langsung dg mesin ini. Jadi matikan deteksi "
-"printer jaringan jika tak perlu.\n"
+"sehingga ia/mereka dapat dideteksi.\n"
"\n"
" Klik \"Lanjut\" jika siap, dan \"Batal\" jika Anda tak ingin men-setup "
-"printer(s) sekarang."
+"printer sekarang."
#: ../../printerdrake.pm_.c:297
-#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8040,11 +8120,11 @@ msgstr ""
"dan dinyalakan.\n"
"\n"
"Ingat, deteksi printer jaringan membutuhkan waktu lebih lama daripada "
-"printer lokal yg terhubung langsung dg mesin ini. Jadi matikan deteksi "
-"printer jaringan jika tak perlu.\n"
+"printer yg terhubung langsung dg mesin ini. Matikan deteksi printer jaringan "
+"jika tak perlu.\n"
"\n"
" Klik \"Lanjut\" jika siap, dan \"Batal\" jika Anda tak ingin men-setup "
-"printer(s) sekarang."
+"printer sekarang."
#: ../../printerdrake.pm_.c:315
msgid "Auto-detect printers connected to this machine"
@@ -8288,7 +8368,7 @@ msgid ""
"and then add user name, password, and/or workgroup if needed."
msgstr ""
" Jika printer yg diinginkan terdeteksi, pilihlah dari daftar lalu tambahkan "
-"nama user, katakunci, dan/atau grupkerja jika perlu."
+"nama user, katasandi, dan/atau grupkerja jika perlu."
#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
@@ -8346,7 +8426,7 @@ msgid ""
"\n"
msgstr ""
"Anda akan menset up pencetakan ke account Mindows dengan katasandi. "
-"Berhubung kesalahan arsitekture piranti lunak klien Samba, katakunci "
+"Berhubung kesalahan arsitekture piranti lunak klien Samba, katasandi "
"ditampilkan dalam teks di baris perintah klien Samba untuk mengirim job "
"cetak ke server Mindows. Ini memungkinkan tiap user di mesin ini melihat "
"katasandi di layar dengan perintah \"ps auxwww\".\n"
@@ -8357,7 +8437,7 @@ msgstr ""
"\n"
"Pakailah account tanpa-katasandi di server Mindows Anda, sebagai account "
"\"GUEST\" atau account khusus untuk pencetakan. Jangan hapus proteksi "
-"katakunci account pribadi atau administrator.\n"
+"katasandi account pribadi atau administrator.\n"
"\n"
"Set up server Mindows Anda agar printer dapat dipakai dengan protokol LPD. "
"Laluset up pencetakan dari mesin ini dengan tipe koneksi \"%s\" di "
@@ -8605,7 +8685,6 @@ msgstr ""
"Anda ke port lokal atau konfigurasikan di mesin yang terhubung dengannya."
#: ../../printerdrake.pm_.c:1813
-#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8616,18 +8695,18 @@ msgid ""
"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
"adjust the head alignment settings with this program."
msgstr ""
-"Agar dapat mencetak dg Lexmark inkjet Anda dan konfigurasi ini, Anda perlu "
-"driver printer inkjet yg disediakan Lexmark (http://www.lexmark.com/). "
-"Masuklah ke situs US dan klik tombol \"Drivers\". Pilih model Anda lalu "
-"sistem operasi \"Linux\". Driver disediakan berupa paket RPM atau shell "
-"script dg instalasi grafis interaktif. Anda tak perlu melakukan konfigurasi "
-"dg frontend grafis. Batalkan langsung setelah persetujuan lisensi.Lalu cetak "
-"halaman printhead alignment dg \"lexmarkmaintain\" dan cocokkan setting head "
-"alignmentdd dg program ini."
+"Agar dapat mencetak dg Lexmark inkjet dan konfigurasi ini, Anda perlu driver "
+"printer inkjet yg disediakan Lexmark (http://www.lexmark.com/). Klik link "
+"\"Drivers\". Pilih model Anda lalu sistem operasi \"Linux\". Driver "
+"disediakan berupa paket RPM atau shell script dg instalasi grafis "
+"interaktif. Anda tak perlu melakukan konfigurasi via frontend grafis ini. "
+"Batalkan langsung setelah persetujuan lisensi. Lalu cetak halaman printhead "
+"alignment dg \"lexmarkmaintain\" dan cocokkan setting head alignment dg "
+"program ini."
#: ../../printerdrake.pm_.c:1816
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-msgstr ""
+msgstr "Printer Laser GDI dengan Format ZJ-Stream Zenographics"
#: ../../printerdrake.pm_.c:1817
msgid ""
@@ -8651,6 +8730,21 @@ msgid ""
"The first command can be given by any normal user, the second must be given "
"as root. After having done so you can print normally.\n"
msgstr ""
+"Printer Anda termasuk kelompok printer laser GDI (winprinter) yg menggunakan "
+"format raster Zenographics ZJ-stream utk data yg dikirim ke printer. Driver "
+"printer ini masih amat prematur dan mungkin tak selalu bekerja dg benar. "
+"Khususnya printer mungkin hanya bekerja jika Anda memilih kertas ukuran A4.\n"
+"\n"
+"Beberapa printer misalnya HP LaserJet 1000 (driver ini semula dibuat "
+"untuknya), mensyaratkan firmware di-upload setelah dinyalakan. Untuk HP "
+"LaserJet 1000, carilah file \"sihp1000.img\" di CD driver Mindows printer "
+"atau partisi Mindows Anda dan upload file ke printer dg perintah berikut:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"Perintah pertama dapat diberikan oleh pengguna normal, yang kedua harus "
+"dikerjakan oleh root. Setelah itu Anda baru dapat mencetak.\n"
#: ../../printerdrake.pm_.c:2040
msgid ""
@@ -8910,7 +9004,7 @@ msgstr "Pencetakan di printer \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9244,9 +9338,8 @@ msgid "Printer options"
msgstr "Opsi printer"
#: ../../printerdrake.pm_.c:2989
-#, fuzzy
msgid "Preparing Printerdrake..."
-msgstr "Persiapan PrinterDrake ..."
+msgstr "Persiapan PrinterDrake..."
#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
@@ -9455,10 +9548,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr "Isilah info proxy ftp, kosongkan jika tak perlu"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url harus berawalan 'ftp:' atau 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9506,6 +9595,41 @@ msgstr "mkraid gagal (mungkin raidtoolsnya tak ada?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Partisi tidak cukup untuk level RAID %d\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Tingkat keamanan:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Tingkat keamanan"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Admin Keamanan:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ? (default %s) "
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Pilih tingkat keamanan"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Tunggu, instalasi sedang disiapkan..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Luncurkan sistem suara ALSA (Advanced Linux Sound Architecture)"
@@ -9806,7 +9930,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Pemakaian file bersama"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistem"
@@ -9882,156 +10006,145 @@ msgstr "Gabung dunia Perangkat Lunak Bebas"
#: ../../share/advertising/02-community.pl_.c:10
msgid "Want to know more about the Open Source community?"
-msgstr ""
+msgstr "Ingin tahu lebih tentang komunitas Open Source?"
#: ../../share/advertising/02-community.pl_.c:11
-#, fuzzy
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums you'll find on our \"Community\" webpages"
msgstr ""
-"Cari tahu tentang komunitas Sumber Bebas dan jadi anggota. Belajar, ajari, "
-"dan bantulah sesama dengan bergabung dalam banyak forum diskusi di halaman "
-"web \"Komunitas\" kami"
+"Untuk berbagi pengetahuan dan membantu membangun peralatan Linux, mari "
+"bergabung dalam forum diskusi yg tertera di halaman web \"Komunitas\" kami"
#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
msgid "Get the most from the Internet"
-msgstr "Hubungan ke Internet"
+msgstr "Ambil yang paling Wah! dari Internet"
#: ../../share/advertising/03-internet.pl_.c:10
-#, fuzzy
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 9.0 menyajikan software terbaik untuk mengakses segala yang "
-"disediakan Internet: Jelajah web & lihat animasi dengan Mozilla dan "
-"Konqueror, tukar email & atur info pribadi Anda dengan Evolution dan Kmail, "
-"dan banyak lagi"
+"Mandrake Linux 9.0 menyajikan software terbaik. Jelajah web dan lihat "
+"animasi dengan Mozilla dan Konqueror, atau baca email dan atur info pribadi "
+"Anda dengan Evolution dan Kmail"
#: ../../share/advertising/04-multimedia.pl_.c:9
msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
+msgstr "Temukan perlengkapan grafis dan multimedia terbaru!"
#: ../../share/advertising/04-multimedia.pl_.c:10
msgid "Push multimedia to its limits!"
-msgstr ""
+msgstr "Dorong multimedia hingga tapal batas!"
#: ../../share/advertising/04-multimedia.pl_.c:11
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
"files, edit and handle your images or photos, and play videos"
msgstr ""
-"Mandrake Linux 8.2 memaksimalkan komputer multimedia Anda! Gunakan software "
-"mutakhir untuk memainkan file music dan audio, edit dan mengatur gambar dan "
-"foto, melihat TV dan video, dan banyak lagi"
+"Mandrake Linux 9.0 memungkinkan Anda menggunakan software mutakhir untuk "
+"memainkan file audio, edit dan mengatur gambar/foto, dan melihat video"
#: ../../share/advertising/05-games.pl_.c:9
msgid "Games"
msgstr "Game"
#: ../../share/advertising/05-games.pl_.c:10
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
"strategy, ..."
msgstr ""
-"Mandrake Linux 8.2 menyediakan game terbaik Source Terbuka - arcade, aksi, "
-"kartu, olah raga, strategi, ..."
+"Mandrake Linux menyediakan game Open Source terbaik - arcade, aksi, kartu, "
+"olah raga, strategi, ..."
#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Pusat Kontrol Mandrake"
#: ../../share/advertising/06-mcc.pl_.c:10
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
"your machine"
msgstr ""
-"Pusat Kontrol Mandrake Linux 8.2 adalah tempat terpadu untuk mengkonfigurasi "
-"sistem Mandrake Anda"
+"Mandrake Linux menyediakan alat perkasa untuk mengkonfigurasi mesin Anda"
#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
-msgstr "Antarmuka user"
+msgstr "Antarmuka pengguna"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
+"Mandrake Linux menyediakan 11 antarmuka pengguna yang dapat dimodifikasi: "
+"KDE 3, Gnome 2, WindowMaker, ..."
#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
msgid "Development simplified"
-msgstr "Development"
+msgstr "Pemrograman dipermudah"
#: ../../share/advertising/08-development.pl_.c:10
msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
+msgstr "Mandrake Linux adalah platform bangun terampuh"
#: ../../share/advertising/08-development.pl_.c:11
-#, fuzzy
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
"development environments"
msgstr ""
-"Mandrake Linux 8.2 adalah platform development terampuh. Temukan power "
-"compiler gcc GNU, juga lingkungan development Sumber Bebas terbaik"
+"Gunakan power compiler gcc GNU, juga lingkungan bangun Open Source terbaik"
#: ../../share/advertising/09-server.pl_.c:9
msgid "Turn your machine into a reliable server"
-msgstr ""
+msgstr "Jadikan mesin Anda server yang handal"
#: ../../share/advertising/09-server.pl_.c:10
-#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-"Jadikan mesin Anda server powerful dengan hanya beberapa klik mouse: server "
+"Jadikan mesin Anda server perkasa dengan hanya beberapa klik mouse: server "
"Web, email, firewall, router, server file dan cetak, ..."
#: ../../share/advertising/10-mnf.pl_.c:9
msgid "Optimize your security"
-msgstr ""
+msgstr "Optimasi keamanan"
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
"F.)"
-msgstr ""
+msgstr "MandrakeSecurity mencakup produk Multi Network Firewall (M.N.F.)"
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
+"Produk firewall ini mencakup fitur jaringan yang memungkinkan Anda memenuhi "
+"semua kebutuhan sekuritas"
#: ../../share/advertising/10-mnf.pl_.c:12
msgid "This product is available on MandrakeStore website"
-msgstr ""
+msgstr "Produk ini tersedia di situs MandrakeStore"
#: ../../share/advertising/11-mdkstore.pl_.c:9
msgid "The official MandrakeSoft store"
-msgstr ""
+msgstr "Toko resmi MandrakeSoft"
#: ../../share/advertising/11-mdkstore.pl_.c:10
-#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
-"Solusi Linux lengkap, termasuk sajian khusus produk dan 'goodies', tersedia "
-"online di e-store kami"
+"Solusi Linux lengkap, termasuk sajian khusus produk dan \"goodies\" lain, "
+"tersedia online di e-store kami:"
#: ../../share/advertising/12-mdkstore.pl_.c:9
msgid "Strategic partners"
-msgstr ""
+msgstr "Mitra strategis"
#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
@@ -10039,20 +10152,25 @@ msgid ""
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
+"MandrakeSoft bekerjasama dengan sejumlah perusahaan penyedia solusi "
+"profesional yang kompatibel dengan Mandrake Linux. Daftar mitra ada di "
+"MandrakeStore"
#: ../../share/advertising/13-mdkcampus.pl_.c:9
msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr ""
+msgstr "Temukan katalog training MandrakeSoft Kampus-Linux"
#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
"The training program has been created to respond to the needs of both end "
"users and experts (Network and System administrators)"
msgstr ""
+"Program training diadakan untuk memenuhi kebutuhan para pengguna akhir dan "
+"pakar (admin jaringan dan sistem)"
#: ../../share/advertising/13-mdkcampus.pl_.c:11
msgid "Certify yourself on Linux"
-msgstr ""
+msgstr "Sertifikasikan diri Anda di Linux"
#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
@@ -10060,43 +10178,48 @@ msgid ""
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
"certification program (worldwide professional technical certification)"
msgstr ""
+"Apakah Anda memilih belajar sendiri atau via jaringan mitra training kami, "
+"katalog Kampus-Linux mempersiapkan Anda untuk program sertifikasi LPI baku "
+"(sertifikat teknik profesional dunia)"
#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
msgid "Become a MandrakeExpert"
-msgstr "AhliMandrake"
+msgstr "Jadi AhliMandrake"
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform"
-msgstr ""
+msgstr "Temukan solusi problem via platform dukungan online MandrakeSoft"
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
+"Ikut online dengan tim support MandrakeSoft dan Komunitas Linux utk berbagi "
+"pengetahuan dan membantu sesama dengan menjadi Pakar di situs support teknik "
+"online:"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert Corporate"
-msgstr "AhliMandrake"
+msgstr "AhliMandrake Perusahaan"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
msgid "An online platform to respond to company's specific support needs"
-msgstr ""
+msgstr "Platform online yang melayani kebutuhan support spesifik perusahaan"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
+"Semua insiden akan di-followup oleh pakar teknis MandrakeSoft berkualitas."
#: ../../share/advertising/17-mdkclub.pl_.c:9
msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
+msgstr "KlubMandrake dan Klub Perusahaan Mandrake"
#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
@@ -10107,16 +10230,21 @@ msgid ""
"competititve edge, if you want to support Mandrake Linux development, join "
"MandrakeClub!"
msgstr ""
+"MandrakeClub dan Klub Perusahaan Mandrake dibuat utk pengguna pribadi dan "
+"bisnis Mandrake Linux yg ingin secara langsung men-support distro Linux "
+"favorit sembari menerima hak-hak khusus. Jika Anda suka produk kami, jika "
+"produk kami membantu perusahaan Anda dalam bersaing, jika Anda ingin "
+"membantu pembangunan Mandrake Linux, bergabunglah dengan MandrakeClub!"
#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Instalasi paket..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Silakan log out dan tekan Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Silakan masuk lagi ke %s untuk mengaktifkan perubahan"
@@ -10157,16 +10285,6 @@ msgstr "Tambah/Hapus User"
msgid "Add/Del Clients"
msgstr "Tambah/Hapus Klien DHCP"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Pertolongan"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Disket boot"
@@ -10215,48 +10333,64 @@ msgstr "Tambah user -->"
msgid "<-- Del User"
msgstr "<-- Hapus User"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Image Boot Net"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Tambah Klien -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Hapus Klien"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Konfig dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Konfigurasi Lanjutan"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Tulis konfigurasi"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Masukkan floppy:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Gagal akses ke floppy!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Disket dapat dilepas sekarang"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Floppy drive tak tersedia"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Image ISO Etherboot adalah %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Ada yg salah! - mkisofs sudah diinstal?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Perlu bikin dulu /etc/dhcpd.conf first!"
@@ -10351,20 +10485,19 @@ msgstr "Hapus item terakhir"
#: ../../standalone/drakbackup_.c:617
msgid "Cron not available yet as non-root"
-msgstr ""
+msgstr "Cron non-root belum tersedia"
#: ../../standalone/drakbackup_.c:723
msgid "WARNING"
-msgstr ""
+msgstr "PERINGATAN"
#: ../../standalone/drakbackup_.c:724
-#, fuzzy
msgid "FATAL"
-msgstr "FAT"
+msgstr "FATAL"
#: ../../standalone/drakbackup_.c:725
msgid "INFO"
-msgstr ""
+msgstr "INFO"
#: ../../standalone/drakbackup_.c:737
msgid ""
@@ -10400,12 +10533,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Total perkembangan"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10418,41 +10551,41 @@ msgstr ""
"Awas: Jika Anda telah melakukan proses ini Anda mungkin perlu\n"
" membersihkan entri dari authorized_keys pada server."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Perlu waktu untuk membuat kunci"
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "ERROR: Tak dapat menghasilkan %s."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
-msgstr ""
+msgstr "Tiada prompt katasandi di %s pada port %s"
-#: ../../standalone/drakbackup_.c:849
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:852
+#, c-format
msgid "Bad password on %s"
-msgstr "Tiada katasandi"
+msgstr "Salah katasandi pada %s"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
-msgstr ""
+msgstr "Tak ada izin pemindahan %s ke %s"
-#: ../../standalone/drakbackup_.c:851
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:854
+#, c-format
msgid "Can't find %s on %s"
-msgstr "Tidak bisa buka %s: %s\n"
+msgstr "%s di %s tak tercari"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
-msgstr ""
+msgstr "tak ada respon %s"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10467,68 +10600,66 @@ msgstr ""
"\n"
"ssh -i %s %s\\@%s\n"
"\n"
-"tanpa ditanyai katakunci."
+"tanpa ditanyai katasandi."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgstr "Situs remote WebDAV telah sinkron!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
-msgstr ""
+msgstr "Transfer WebDAV gagal!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
-msgstr ""
+msgstr "Tiada CDR/DVDR di drive!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
-msgstr ""
+msgstr "Tampaknya bukan media yang dapat merekam!"
-#: ../../standalone/drakbackup_.c:934
-#, fuzzy
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
-msgstr "Media removable"
+msgstr "Media tak terhapuskan"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Perlu waktu untuk menghapus media."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
-msgstr ""
+msgstr "Problem izin pada akses CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
-msgstr ""
+msgstr "Tak ada pita di %s!"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Backup file sistem..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "File Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Backup file User..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Kemajuan Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Backup file lain..."
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
-msgstr "Gunakan pita utk backup"
+msgstr "Tak ada perubahan backup!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10539,7 +10670,7 @@ msgstr ""
"Aktivitas drakbackup via %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10548,7 +10679,7 @@ msgstr ""
"daftar file yg dikirim oleh FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10557,7 +10688,7 @@ msgstr ""
"\n"
" Problem koneksi FTP: Gagal mengirim file backup dengan FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10567,7 +10698,7 @@ msgstr ""
"Aktivitas drakbackup via CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10577,24 +10708,24 @@ msgstr ""
"Aktivitas drakbackup via tape:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Kesalahan saat pengiriman surat. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
-msgstr ""
+msgstr "Katalog tak dapat dibuat!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Pilihan File"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Pilih file atau direktori dan klik 'Tambah'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10602,67 +10733,67 @@ msgstr ""
"\n"
"Periksa semua opsi yang Anda inginkan.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Opsi ini memungkinkan backup / restorasi semua file di direktori /etc.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Backup file System Anda. (direktori /etc)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Pakai backup incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Tidak memasukkan file penting (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "Dengan opsi ini Anda dapat menyimpan ulang semua versi direktori /etc."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Periksa semua user yang ingin Anda masukkan ke backup."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Jangan masukkan cache browser"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Pakai Backup Incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Hapus Pilihan"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Mindows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "User"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "Pakai koneksi jaringan utk backup"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
-msgstr ""
+msgstr "Metode Jaring:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr "Pakai Expect utk SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -10670,7 +10801,7 @@ msgstr ""
"Buat/Transfer\n"
"kunci cadangan SSH"
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -10678,15 +10809,18 @@ msgstr ""
" Transfer \n"
"Sekarang"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr "Kunci sudah ada di tempat"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Masukkan nama host atau IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -10694,27 +10828,27 @@ msgstr ""
"Masukkan direktori (atau modul) utk\n"
" meletakkan backup di host ini."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Masukkan login"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Masukkan katasandi"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Ingat katasandi ini"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
-msgstr "Perlu namahost, namauser dan katakunci!"
+msgstr "Perlu namahost, namauser dan katasandi!"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Pakai CD/DVDROM utk backup"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -10724,35 +10858,35 @@ msgstr ""
"(Tekan Enter untuk menyalurkan setting ke tempat isian lain.\n"
"Field ini tak diperlukan, hanya alat utk mengisi formulir.)"
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Pilih ukuran media CD/DVD Anda"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr "Mohon cek perihal CD multisession"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Periksa apakah Anda menggunakan media CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Cek apakah Anda ingin menghapus media RW (session pertama)"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr " Hapus Sekarang "
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Periksa apakah Anda menggunakan alat DVDR"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Periksa apakah Anda menggunakan alat DVDRAM"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10760,32 +10894,32 @@ msgstr ""
"Masukkan nama alat Penulis CD Anda\n"
" mis: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Tidak ada alat CD didefinisikan!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Gunakan pita utk backup"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Masukkan nama alat utk backup"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr "Cek apakah Anda ingin menggunakan alat non-rewinding."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr "Cek apakah Anda ingin menghapus tape sebelum backup."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
msgstr "Cek apakah Anda ingin meng-eject tape setelah backup."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10793,67 +10927,67 @@ msgstr ""
"Masukkan ukuran maximum\n"
" yg diizinkan utk Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Masukkan direktori utk penyimpanan:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Pakai quota utk file backup."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Jaringan"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Tape"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "perjam"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "harian"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "mingguan"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "bulanan"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Pakai daemon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Pilih interval waktu backup"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Pilih media backup."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -10863,71 +10997,71 @@ msgstr ""
"\n"
"Ingat bahwa kini semua media 'net' juga menggunakan harddisk."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Kirim laporan mail setelah tiap backup ke :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
+msgstr "Hapus file tar Harddisk setelah backup ke media lain."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Apa"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Mana"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Kapan"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Opsi Tambahan"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Konfigurasi Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Pilih tempat backup"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "di Hard Drive"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "lewat Network"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "di CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr "di Device Pita"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Pilih apa yang akan di-backup"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Backup sistem"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Backup User"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Pilih user secara manual"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -10935,7 +11069,7 @@ msgstr ""
"\n"
"Sumber Backup: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -10943,7 +11077,7 @@ msgstr ""
"\n"
"- File Sistem:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -10951,7 +11085,7 @@ msgstr ""
"\n"
"- File User:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -10959,7 +11093,7 @@ msgstr ""
"\n"
"- File Lain:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -10968,13 +11102,15 @@ msgstr ""
"\n"
"- Simpan di Hard drive di path: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
+"\n"
+"- Hapus file tar harddisk setelah backup.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -10982,20 +11118,20 @@ msgstr ""
"\n"
"- Bakar ke CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr " di device: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
-msgstr ""
+msgstr " (multi-session)"
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
@@ -11004,12 +11140,12 @@ msgstr ""
"\n"
"- Simpan ke tape di alat: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tHapus=%s"
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
@@ -11018,7 +11154,7 @@ msgstr ""
"\n"
"- Simpan via %s di host: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11027,7 +11163,7 @@ msgstr ""
"\t\t name user: %s\n"
"\t\t di path: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11035,19 +11171,19 @@ msgstr ""
"\n"
"- Opsi:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tJangan masukkan File Sistem\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackup dengan tar dan bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackup dengan tar dan gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11056,39 +11192,39 @@ msgstr ""
"\n"
"- Cakupan daemon (%s) :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Hard drive.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Network dg FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Network dg SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Network dg rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Network dg webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Tiada konfigurasi, mohon klik Dukun atau Lanjutan.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11096,7 +11232,7 @@ msgstr ""
"Daftar data restorasi:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11104,265 +11240,261 @@ msgstr ""
"Daftar data rusak:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Mohon uncheck atau hapus nanti."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "File backup rusak"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Semua data terpilih telah "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Berhasil Direstorasi di %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Restorasi Konfigurasi "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK utk restorasi file lain."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Daftar user restorasi (hanya tanggal terakhir per user yg penting)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Backup file sistem sebelum:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "pilih tanggal restorasi"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Pakai Hard Disk utk backup"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Masukkan direktori utk penyimpanan:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Koneksi FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Koneksi Aman"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Restorasi dari Hard Disk."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Masukkan direktori tempat backup disimpan"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Pilih media lain utk direstorasi"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Media Lain"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Restorasi sistem"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Restorasi User"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Restorasi Lain-lain"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "pilih path utk restorasi (selain /)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Lakukan backup baru sebelum restorasi (hanya utk backup incremental.)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Hapus direktori user sebelum restorasi."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
+"Restorasi Entri\n"
+"Katalog Terpilih"
-#: ../../standalone/drakbackup_.c:3392
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
-msgstr "Hapus Pilihan"
+msgstr ""
+"Restorasi File\n"
+"Terpilih"
-#: ../../standalone/drakbackup_.c:3409
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
-msgstr "Restorasi Lain-lain"
+msgstr ""
+"Ubah\n"
+"Path Restorasi"
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:3479
+#, c-format
msgid "Backup files not found at %s."
-msgstr "Backup %s ke %s.old"
+msgstr "File backup tak ditemukan di %s."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
+"Masukkan CD dengan label %s\n"
+" ke drive CD di titik mount /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:3488
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
-msgstr "Restorasi dari Hard Disk."
+msgstr "Restorasi Dari CD"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
+msgstr "Bukan label CD yang benar. Disk berlabel %s."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
+"Masukkan pita dengan label %s\n"
+" ke drive pita device %s"
-#: ../../standalone/drakbackup_.c:3500
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
-msgstr "Kembalikan tabel partisi"
+msgstr "Restorasi Dari Pita"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
+msgstr "Bukan label pita yang benar. Pita berlabel %s."
-#: ../../standalone/drakbackup_.c:3522
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
-msgstr "Restorasi User"
+msgstr "Restorasi Via Jaringan"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
-msgstr ""
+msgstr "Restorasi Via Protokol Jaringan: %s"
-#: ../../standalone/drakbackup_.c:3523
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "Nama Host"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
-msgstr ""
+msgstr "Path atau Modul Host"
-#: ../../standalone/drakbackup_.c:3531
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
-msgstr "Katasandi"
+msgstr "Katasandi dibutuhkan"
-#: ../../standalone/drakbackup_.c:3537
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
-msgstr "Nama user"
+msgstr "Nama pengguna dibutuhkan"
-#: ../../standalone/drakbackup_.c:3540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
-msgstr "Nama Host: "
+msgstr "Nama Host dibutuhkan"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
-msgstr ""
+msgstr "Path atau Modul dibutuhkan"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
-msgstr ""
+msgstr "File Telah Direstorasi..."
-#: ../../standalone/drakbackup_.c:3561
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
-msgstr "Restorasi Lain-lain"
+msgstr "Restorasi Gagal..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Restorasi semua backup"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Restorasi pilihan sendiri"
-#: ../../standalone/drakbackup_.c:3854
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
-msgstr "Tekan Lanjutkan utk melanjutkan"
+msgstr "CD di tempat - lanjutkan."
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
-msgstr ""
+msgstr "Jelajahi repositori restorasi baru."
-#: ../../standalone/drakbackup_.c:3863
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
-msgstr "Kembalikan tabel partisi"
+msgstr "Restorasi Dari Katalog"
-#: ../../standalone/drakbackup_.c:3891
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
-msgstr "Restorasi User"
+msgstr "Perkembangan Restorasi"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Sebelumnya"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Simpan"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Bangun Backup"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Restorasi"
-#: ../../standalone/drakbackup_.c:4229
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-"Error saat sendmail\n"
-" surat laporan Anda tak terkirim\n"
+"Error saat sendmail.\n"
+" Surat laporan Anda tak terkirim.\n"
" Mohon konfigurasikan sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -11370,7 +11502,7 @@ msgstr ""
"Paket berikut perlu diinstal:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11378,19 +11510,19 @@ msgstr ""
"Error saat pengiriman file via FTP.\n"
" Betulkan konfigurasi FTP Anda."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Pilih data utk direstorasi..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Pilih media backup..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Pilih data backup..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11398,59 +11530,59 @@ msgstr ""
"Tiada file konfigurasi \n"
"Mohon klik Dukun atau Lanjutan"
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Sedang dibangun ... tunggu."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Backup file sistem"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Backup file user"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Backup file lain"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Total Kemajuan"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "file dikirim dg FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Kirim file..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Backup Sekarang dari file konfigurasi"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Lihat Konfigurasi Backup."
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Konfigurasi Dukun"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Konfigurasi Lanjutan"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Backup Sekarang"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11510,7 +11642,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11524,7 +11656,7 @@ msgstr ""
" myhostname atau mydomain di /etc/postfix/main.cf harus diset\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11599,8 +11731,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11627,22 +11758,22 @@ msgid ""
"\n"
"\n"
msgstr ""
-"penjelasan restore:\n"
+"penjelasan restorasi:\n"
" \n"
"Hanya tanggal terkini yang akan dipakai, karena dg backup incremental \n"
-"diperlukan restore satu demi satu tiap backup lama.\n"
+"diperlukan restorasi satu demi satu tiap backup lama.\n"
"\n"
-"Jadi jika Anda tak suka restorasi user lepaslah pilihan semua kotak\n"
+"Jadi jika Anda tak ingin merestorasi pengguna lepaslah pilihan semua kotak\n"
"tandanya.\n"
"\n"
-"Jika tidak, Anda dapat memilih hanya satu opsi\n"
+"Jika tidak, Anda dapat memilih hanya satu opsi.\n"
"\n"
" - Backup Incremental:\n"
"\n"
"\tBackup incremental adalah opsi terkuat backup,\n"
"\tAnda dapat mem-backup semua data pertama kali,\n"
"\tdan kemudian hanya yg berubah.\n"
-"\tJadi Anda dapat, saat tahap restore, menyimpan\n"
+"\tJadi Anda dapat, saat restorasi, menaruh\n"
"\tulang data Anda dari tanggal yg ditentukan.\n"
"\tJika Anda belum memilih opsi ini semua backup\n"
"\tlama akan dihapus sebelum tiap backup. \n"
@@ -11650,19 +11781,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Haksalin (C) 2001 MandrakeSoft oleh DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" update 2002 MandrakeSoft oleh Stew Benedict <sbenedict\\@mandrakesoft.com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11690,7 +11821,7 @@ msgstr ""
" ini; jika tidak, tulis ke the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11766,7 +11897,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11783,7 +11914,7 @@ msgstr ""
"membangun backup di harddrive Anda sebelum mengirimnya ke server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11804,7 +11935,7 @@ msgstr ""
"akan kehilangan semua data. Hati-hati dan jangan mengubah\n"
"file data backup secara manual.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11929,8 +12060,8 @@ msgid "Synchronization tool"
msgstr "Sinkronisator"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Alat Mandiri"
@@ -11995,7 +12126,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12004,24 +12135,24 @@ msgstr ""
"\n"
"\n"
"Klik tombol utk mengirim laporan kutu.\n"
-"Ini akan membuka window browser web di https://www.bugzilla.com\n"
+"Ini akan membuka window browser web di https://drakbug.mandrakesoft.com\n"
"dan akan ada formulir untuk diisi. Info yang tampil di atas akan\n"
"ditransfer ke server tsb\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Laporan"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Tak terinstal"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "koneksi ke dukun Bugzilla ..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Browser tak tersedia! Installah satu"
@@ -12063,7 +12194,7 @@ msgstr "Akses Internet"
#: ../../standalone/drakconnect_.c:180
msgid "Type:"
-msgstr "Tipe: "
+msgstr "Tipe:"
#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
@@ -12071,11 +12202,11 @@ msgstr "Gateway:"
#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
-msgstr "Interface: "
+msgstr "Antarmuka:"
#: ../../standalone/drakconnect_.c:194
msgid "Status:"
-msgstr "Status: "
+msgstr "Status:"
#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
@@ -12115,15 +12246,11 @@ msgstr "Klik di sini utk meluncurkan wizard ->"
#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
-msgstr "Wizard..."
+msgstr "Dukun..."
#: ../../standalone/drakconnect_.c:282
msgid "Apply"
-msgstr "Pasang"
-
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Tunggu ya, sedang mengaktifkan konfigurasi"
+msgstr "Terapkan"
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
@@ -12152,8 +12279,8 @@ msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-"Tiada interface terkonfigurasi.\n"
-"Konfigurasi dulu dg meng-klik 'Configure'"
+"Tiada antarmuka terkonfigurasi.\n"
+"Konfigurasikan dulu dg meng-klik 'Configure'"
#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
@@ -12238,13 +12365,13 @@ msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
-msgstr "Nama Modul"
+msgstr "Nama modul"
#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Ukuran"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12309,12 +12436,12 @@ msgstr "Keluaran"
msgid "Build the disk"
msgstr "Buat disk"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Pastikan media ada di device %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12323,12 +12450,12 @@ msgstr ""
"Media di device %s tidak ada atau write-protected.\n"
"Masukkan satu."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Fork gagal: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12812,160 +12939,146 @@ msgstr ""
"\n"
"Silakan pencet Konfigurasikan untuk mulai."
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "group"
-msgstr "Grupkerja"
+msgstr "grup"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
-msgstr ""
+msgstr "path"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
-msgstr "Partisi %s"
+msgstr "izin"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "user"
-msgstr "User"
+msgstr "pengguna"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
-msgstr ""
+msgstr "Naik"
-#: ../../standalone/drakperm_.c:49
-#, fuzzy
+#: ../../standalone/drakperm_.c:50
msgid "delete"
-msgstr "Hapus"
+msgstr "hapus"
-#: ../../standalone/drakperm_.c:50
-#, fuzzy
+#: ../../standalone/drakperm_.c:51
msgid "edit"
-msgstr "Sedang"
+msgstr "edit"
-#: ../../standalone/drakperm_.c:51
-#, fuzzy
+#: ../../standalone/drakperm_.c:52
msgid "Down"
-msgstr "Selesai"
+msgstr "Turun"
-#: ../../standalone/drakperm_.c:52
-#, fuzzy
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
-msgstr "tambah modul"
+msgstr "tambah aturan"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
-msgstr ""
+msgstr "pilih file izin yg akan dilihat/edit"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
+"Drakperm digunakan utk melihat file yg digunakan utk membetulkan izin, "
+"pemilik, dan grup via msec.\n"
+"Anda dapat juga mengedit aturan Anda sendiri yang akan menindas aturan "
+"standar."
-#: ../../standalone/drakperm_.c:61
-#, fuzzy
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
-msgstr "Tambah printer baru"
+msgstr "Tambah aturan baru di akhir"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
-msgstr ""
+msgstr "Edit aturan saat ini"
-#: ../../standalone/drakperm_.c:63
-#, fuzzy
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
-msgstr "Semua tak dipilih"
+msgstr "Naikkan aturan terpilih satu level"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
-msgstr ""
+msgstr "Turunkan aturan terpilih satu level"
-#: ../../standalone/drakperm_.c:65
-#, fuzzy
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
-msgstr "Hapus Pilihan"
+msgstr "Hapus aturan terpilih"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
-msgstr ""
+msgstr "jelajah"
-#: ../../standalone/drakperm_.c:248
-#, fuzzy
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
-msgstr "Buat user"
+msgstr "Pengguna saat ini"
-#: ../../standalone/drakperm_.c:253
-#, fuzzy
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
-msgstr "Versi: %s\n"
+msgstr "Izin"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
-msgstr ""
+msgstr "Path"
-#: ../../standalone/drakperm_.c:255
-#, fuzzy
+#: ../../standalone/drakperm_.c:251
msgid "Property"
-msgstr "Port"
+msgstr "Properti"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
-msgstr ""
+msgstr "sticky-bit (bit-lengket)"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
-msgstr ""
+msgstr "Set-UID (ID Pengguna)"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
-msgstr ""
+msgstr "Set-GID (ID Grup)"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
+"Digunakan utk direktori:\n"
+" hanya pemilik direktori atau file dalam direktori ini yg dapat menghapusnya"
-#: ../../standalone/drakperm_.c:315
-#, fuzzy
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
-msgstr "Gunakan deteksi otomatis"
+msgstr "Gunakan id pemilik utk eksekusi"
-#: ../../standalone/drakperm_.c:316
-#, fuzzy
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
-msgstr "Gunakan deteksi otomatis"
+msgstr "Gunakan id grup utk eksekusi"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
-msgstr ""
+msgstr "jika dipilih, pemilik dan grup takkan diubah"
-#: ../../standalone/drakperm_.c:322
-#, fuzzy
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
-msgstr "Pilihan Splash"
+msgstr "Pilihan path"
-#: ../../standalone/drakperm_.c:368
-#, fuzzy
+#: ../../standalone/drakperm_.c:364
msgid "user :"
-msgstr "User"
+msgstr "pengguna :"
-#: ../../standalone/drakperm_.c:370
-#, fuzzy
+#: ../../standalone/drakperm_.c:366
msgid "group :"
-msgstr "Grupkerja"
+msgstr "grup :"
-#: ../../standalone/draksound_.c:46
-#, fuzzy
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
-msgstr "Kartu TV tak terdeteksi!"
+msgstr "Kartu Suara tak terdeteksi!"
-#: ../../standalone/draksound_.c:47
-#, fuzzy
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12976,7 +13089,7 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Kartu TV tak terdeteksi. Pastikan Kartu Video/TV yg disupport Linux "
+"Kartu Suara tak terdeteksi. Pastikan Kartu Suara yg disupport Linux "
"terhubung dengan benar.\n"
"\n"
"\n"
@@ -12985,137 +13098,144 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr "paket ImageMagick diperlukan utk kerja secara benar"
+
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
-msgstr "pembuatan bootdisk"
+msgstr "pembuatan step pertama"
-#: ../../standalone/draksplash_.c:77
-#, fuzzy
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
-msgstr "Resolusi"
+msgstr "resolusi akhir"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
-#, fuzzy
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
-msgstr "Pilih file"
-
-#: ../../standalone/draksplash_.c:79
-#, fuzzy
-msgid "Theme name"
-msgstr "Nama share"
+msgstr "pilih file image"
#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Konfigurasi instalasi akhir"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Keluar"
+msgid "Theme name"
+msgstr "Nama tema"
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Instal tema"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
+msgstr "Jelajah"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
-#, fuzzy
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
-msgstr "Gagal membuat preview Bootsplash"
-
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
+msgstr "Konfigurasi gambar bootsplash"
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
+"koordinat x kotak\n"
+"teks (jumlah huruf)"
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
+"koordinat x kotak\n"
+"teks (jumlah huruf)"
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
-msgstr ""
+msgid "text width"
+msgstr "lebar teks"
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr ""
+msgid "text box height"
+msgstr "tinggi kotak teks"
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
+"koordinat x sudut kiri\n"
+"atas papan perkembangan"
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
+"koordinat y sudut kiri\n"
+"atas papan perkembangan"
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
-msgstr ""
+msgid "the width of the progress bar"
+msgstr "lebar papan perkembangan"
#: ../../standalone/draksplash_.c:107
-msgid "the color of the progress bar"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:119
-#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "the heigth of the progress bar"
+msgstr "tinggi papan perkembangan"
-#: ../../standalone/draksplash_.c:120
-#, fuzzy
-msgid "preview"
-msgstr "device"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
+msgstr "warna papan perkembangan"
#: ../../standalone/draksplash_.c:121
-#, fuzzy
-msgid "choose color"
-msgstr "Pilih monitor"
+msgid "Preview"
+msgstr "tampilan"
+
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "simpan tema"
#: ../../standalone/draksplash_.c:124
-#, fuzzy
+msgid "Choose color"
+msgstr "pilih warna"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
-msgstr "Display tema di konsol"
+msgstr "Display logo di Konsol"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
-msgstr ""
+msgstr "Matikan pesan kernel secara default"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
-msgstr ""
+msgstr "Tema ini belum punya bootsplash di %s !"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
-msgstr ""
+msgstr "simpan tema Bootsplash..."
-#: ../../standalone/draksplash_.c:436
-#, fuzzy
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
-msgstr "Seleksi model printer"
+msgstr "Pilihan warna ProgressBar"
-#: ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
-msgstr "Pilih/masukkan printer/device!"
+msgstr "Pilihlah file image!"
-#: ../../standalone/draksplash_.c:463
-#, fuzzy
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
-msgstr "Pendeteksian alat..."
+msgstr "Preview sedang dibuat ..."
+
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Gagal membuat preview Bootsplash"
#: ../../standalone/drakxtv_.c:49
msgid ""
@@ -13271,6 +13391,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"cara pakai: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "cara pakai: keyboarddrake [--expert] [keyboard]\n"
@@ -13299,11 +13427,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Gagal memulai upgrade live !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "Perubahan telah dilakukan, Anda harus logout agar perubahan berlaku"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13471,10 +13599,9 @@ msgid "service setting"
msgstr "setting servis"
#: ../../standalone/logdrake_.c:431
-#, fuzzy
msgid ""
"You will receive an alert if one of the selected services is no more running"
-msgstr "Anda akan menerima peringatan bila salah satu servis terpilih terhenti"
+msgstr "Anda akan diingatkan bila salah satu servis terpilih terhenti"
#: ../../standalone/logdrake_.c:443
msgid "load setting"
@@ -13520,17 +13647,17 @@ msgstr "Tes port"
#: ../../standalone/scannerdrake_.c:81
#, c-format
msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr ""
+msgstr "Tiada support utk %s pada Linux Mandrake versi ini."
#: ../../standalone/scannerdrake_.c:56
-#, fuzzy, c-format
+#, c-format
msgid "%s found on %s, configure it?"
msgstr "%s ditemukan di %s, konfigurasikan?"
#: ../../standalone/scannerdrake_.c:59
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
+msgstr "%s tak ada di database scanner, konfigurasikan secara manual?"
#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
@@ -13576,16 +13703,14 @@ msgstr ""
"Anda dapat men-scan dokumen dengan ``XSane'' dari Multimedia/Grafik di menu "
"aplikasi."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Some devices in the \"%s\" hardware class were removed:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"Bbrp device di kelas %s ditambahkan:\n"
@@ -13662,7 +13787,7 @@ msgstr "Instal update sistem"
msgid "Exit install"
msgstr "Keluar dari proses instal"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13910,8 +14035,283 @@ msgstr "Multimedia - CD Burning"
msgid "Scientific Workstation"
msgstr "Aplikasi Ilmu pengetahuan"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Gagal membuat preview Bootsplash"
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "Klik tombol utk mengirim laporan kutu.\n"
+#~ "Ini akan membuka window browser web di https://www.bugzilla.com\n"
+#~ "dan akan ada formulir untuk diisi. Info yang tampil di atas akan\n"
+#~ "ditransfer ke server tsb\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "buat bootsplash tahap 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "maju ke konfigurasi lilosplash"
+
+#~ msgid "Go back"
+#~ msgstr "kembali"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Tak diketahui adanya driver alternatif OSS/ALSA utk kartu suara Anda (%s)"
+
+#~ msgid ""
+#~ "Introduction\n"
+#~ "\n"
+#~ "The operating system and the different components available in the "
+#~ "Mandrake Linux distribution \n"
+#~ "shall be called the \"Software Products\" hereafter. The Software "
+#~ "Products include, but are not \n"
+#~ "restricted to, the set of programs, methods, rules and documentation "
+#~ "related to the operating \n"
+#~ "system and the different components of the Mandrake Linux distribution.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. License Agreement\n"
+#~ "\n"
+#~ "Please read this document carefully. This document is a license agreement "
+#~ "between you and \n"
+#~ "MandrakeSoft S.A. which applies to the Software Products.\n"
+#~ "By installing, duplicating or using the Software Products in any manner, "
+#~ "you explicitly \n"
+#~ "accept and fully agree to conform to the terms and conditions of this "
+#~ "License. \n"
+#~ "If you disagree with any portion of the License, you are not allowed to "
+#~ "install, duplicate or use \n"
+#~ "the Software Products. \n"
+#~ "Any attempt to install, duplicate or use the Software Products in a "
+#~ "manner which does not comply \n"
+#~ "with the terms and conditions of this License is void and will terminate "
+#~ "your rights under this \n"
+#~ "License. Upon termination of the License, you must immediately destroy "
+#~ "all copies of the \n"
+#~ "Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "2. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law.\n"
+#~ "MandrakeSoft S.A. will, in no circumstances and to the extent permitted "
+#~ "by law, be liable for any special,\n"
+#~ "incidental, direct or indirect damages whatsoever (including without "
+#~ "limitation damages for loss of \n"
+#~ "business, interruption of business, financial loss, legal fees and "
+#~ "penalties resulting from a court \n"
+#~ "judgment, or any other consequential loss) arising out of the use or "
+#~ "inability to use the Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
+#~ "or occurance of such \n"
+#~ "damages.\n"
+#~ "\n"
+#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
+#~ "SOME COUNTRIES\n"
+#~ "\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
+#~ "will, in no circumstances, be \n"
+#~ "liable for any special, incidental, direct or indirect damages whatsoever "
+#~ "(including without \n"
+#~ "limitation damages for loss of business, interruption of business, "
+#~ "financial loss, legal fees \n"
+#~ "and penalties resulting from a court judgment, or any other consequential "
+#~ "loss) arising out \n"
+#~ "of the possession and use of software components or arising out of "
+#~ "downloading software components \n"
+#~ "from one of Mandrake Linux sites which are prohibited or restricted in "
+#~ "some countries by local laws.\n"
+#~ "This limited liability applies to, but is not restricted to, the strong "
+#~ "cryptography components \n"
+#~ "included in the Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. The GPL License and Related Licenses\n"
+#~ "\n"
+#~ "The Software Products consist of components created by different persons "
+#~ "or entities. Most \n"
+#~ "of these components are governed under the terms and conditions of the "
+#~ "GNU General Public \n"
+#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+#~ "licenses allow you to use, \n"
+#~ "duplicate, adapt or redistribute the components which they cover. Please "
+#~ "read carefully the terms \n"
+#~ "and conditions of the license agreement for each component before using "
+#~ "any component. Any question \n"
+#~ "on a component license should be addressed to the component author and "
+#~ "not to MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
+#~ "License. Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
+#~ "the documentation for \n"
+#~ "further details.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Intellectual Property Rights\n"
+#~ "\n"
+#~ "All rights to the components of the Software Products belong to their "
+#~ "respective authors and are \n"
+#~ "protected by intellectual property and copyright laws applicable to "
+#~ "software programs.\n"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts, by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. \n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by "
+#~ "a court judgment, this \n"
+#~ "portion is excluded from this contract. You remain bound by the other "
+#~ "applicable sections of the \n"
+#~ "agreement.\n"
+#~ "The terms and conditions of this License are governed by the Laws of "
+#~ "France.\n"
+#~ "All disputes on the terms of this license will preferably be settled out "
+#~ "of court. As a last \n"
+#~ "resort, the dispute will be referred to the appropriate Courts of Law of "
+#~ "Paris - France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A. \n"
+#~ msgstr ""
+#~ "Introduction\n"
+#~ "\n"
+#~ "The operating system and the different components available in the Linux-"
+#~ "Mandrake distribution \n"
+#~ "shall be called the \"Software Products\" hereafter. The Software "
+#~ "Products include, but are not \n"
+#~ "restricted to, the set of programs, methods, rules and documentation "
+#~ "related to the operating \n"
+#~ "system and the different components of the Linux-Mandrake distribution.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. License Agreement\n"
+#~ "\n"
+#~ "Please read this document carefully. This document is a license agreement "
+#~ "between you and \n"
+#~ "MandrakeSoft S.A. which applies to the Software Products.\n"
+#~ "By installing, duplicating or using the Software Products in any manner, "
+#~ "you explicitly \n"
+#~ "accept and fully agree to conform to the terms and conditions of this "
+#~ "License. \n"
+#~ "If you disagree with any portion of the License, you are not allowed to "
+#~ "install, duplicate or use \n"
+#~ "the Software Products. \n"
+#~ "Any attempt to install, duplicate or use the Software Products in a "
+#~ "manner which does not comply \n"
+#~ "with the terms and conditions of this License is void and will terminate "
+#~ "your rights under this \n"
+#~ "License. Upon termination of the License, you must immediately destroy "
+#~ "all copies of the \n"
+#~ "Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "2. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law.\n"
+#~ "MandrakeSoft S.A. will, in no circumstances and to the extent permitted "
+#~ "by law, be liable for any special,\n"
+#~ "incidental, direct or indirect damages whatsoever (including without "
+#~ "limitation damages for loss of \n"
+#~ "business, interruption of business, financial loss, legal fees and "
+#~ "penalties resulting from a court \n"
+#~ "judgment, or any other consequential loss) arising out of the use or "
+#~ "inability to use the Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
+#~ "or occurance of such \n"
+#~ "damages.\n"
+#~ "\n"
+#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
+#~ "SOME COUNTRIES\n"
+#~ "\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
+#~ "will, in no circumstances, be \n"
+#~ "liable for any special, incidental, direct or indirect damages whatsoever "
+#~ "(including without \n"
+#~ "limitation damages for loss of business, interruption of business, "
+#~ "financial loss, legal fees \n"
+#~ "and penalties resulting from a court judgment, or any other consequential "
+#~ "loss) arising out \n"
+#~ "of the possession and use of software components or arising out of "
+#~ "downloading software components \n"
+#~ "from one of Linux-Mandrake sites which are prohibited or restricted in "
+#~ "some countries by local laws.\n"
+#~ "This limited liability applies to, but is not restricted to, the strong "
+#~ "cryptography components \n"
+#~ "included in the Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. The GPL License and Related Licenses\n"
+#~ "\n"
+#~ "The Software Products consist of components created by different persons "
+#~ "or entities. Most \n"
+#~ "of these components are governed under the terms and conditions of the "
+#~ "GNU General Public \n"
+#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+#~ "licenses allow you to use, \n"
+#~ "duplicate, adapt or redistribute the components which they cover. Please "
+#~ "read carefully the terms \n"
+#~ "and conditions of the license agreement for each component before using "
+#~ "any component. Any question \n"
+#~ "on a component license should be addressed to the component author and "
+#~ "not to MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
+#~ "License. Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
+#~ "the documentation for \n"
+#~ "further details.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Intellectual Property Rights\n"
+#~ "\n"
+#~ "All rights to the components of the Software Products belong to their "
+#~ "respective authors and are \n"
+#~ "protected by intellectual property and copyright laws applicable to "
+#~ "software programs.\n"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts, by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. \n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by "
+#~ "a court judgment, this \n"
+#~ "portion is excluded from this contract. You remain bound by the other "
+#~ "applicable sections of the \n"
+#~ "agreement.\n"
+#~ "The terms and conditions of this License are governed by the Laws of "
+#~ "France.\n"
+#~ "All disputes on the terms of this license will preferably be settled out "
+#~ "of court. As a last \n"
+#~ "resort, the dispute will be referred to the appropriate Courts of Law of "
+#~ "Paris - France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A. \n"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy biasanya ftp://..."
+
+#~ msgid "quit"
+#~ msgstr "keluar"
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
@@ -15961,9 +16361,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ "ditampilkan\n"
#~ "di sini. Anda dapat meng-klik tombol utk mengubah parameternya."
-#~ msgid "Setting security level"
-#~ msgstr "Pilih tingkat keamanan"
-
#~ msgid "Graphics card"
#~ msgstr "Kartu grafis"
@@ -16329,9 +16726,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Tak jelas (%s), coba lebih detil\n"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (default %s) "
-
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Pilihan Anda? (default %s pilih 'none' untuk tidak ada) "
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index feaa9ccd9..fed17099b 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-01-05 18:53-0500\n"
"Last-Translator: Thorarinn Einarsson <teinarsson@nc.rr.com>\n"
"Language-Team: Icelandic\n"
@@ -93,41 +93,41 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Netstillingar"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -135,19 +135,19 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
#, fuzzy
msgid "Custom"
msgstr "Srlagaa"
@@ -169,33 +169,33 @@ msgstr "Upplausn"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
#, fuzzy
msgid "Options"
msgstr "Upplsingar"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr " lagi"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Htta"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, fuzzy, c-format
msgid ""
"Keep the changes?\n"
@@ -286,25 +286,25 @@ msgstr "Veldu upplausn og fjlda lita"
msgid "Graphics card: %s"
msgstr "Skjkort: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Htta vi"
@@ -380,11 +380,11 @@ msgstr "XFree86 jnn: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 jnn: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X rsingu"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -393,7 +393,7 @@ msgstr ""
"g get stillt tlvuna na til a kveikja sjlfvirkt X vi rsingu\n"
"Vilt kveikja X vi endurrsingu?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -405,7 +405,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Vi hvaa ratengi er msin n tengd?"
@@ -484,7 +484,7 @@ msgstr "Samjappa"
msgid "compact"
msgstr "samjappa"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Skjhamur"
@@ -492,17 +492,17 @@ msgstr "Skjhamur"
msgid "Delay before booting default image"
msgstr "Tf ur en sjlfgefin rsing byrjar"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Lykilor"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Lykilor (aftur)"
@@ -537,14 +537,14 @@ msgid ""
msgstr ""
"Valkosturinn ``Takmarka alla rofa skipanalnu'' gerir ekkert n lykilors"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Reyndu aftur"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Mismunandi lykilor"
@@ -582,7 +582,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
#, fuzzy
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -591,152 +591,152 @@ msgstr ""
"Hrna eru nverandi stillingar LILO .\n"
" getur btt vi fleirum ea breytt essum."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Bta vi"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Bi"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
#, fuzzy
msgid "Modify"
msgstr "Breyta RAID"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Hverju viltu bta vi?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "ru strikerfi (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "ru strikerfi (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "ru strikerfi (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Rsikjarna"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Rt"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Bta aftan vi"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Les-skrif"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tafla"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "ruggt"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Nafn"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Sjlfgefi"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Fjarlgja"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Autt er ekki leyft"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr " verur a hafa diskminni"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
#, fuzzy
msgid "This label is already used"
msgstr "etta nafn er n egar notkun."
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fann %s %s tengi"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Er kannski eitt enn vlinni?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Eru einhver %s tengi tlvunni?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "J"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Skoau vlbnaarupplsingar"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Set inn rekil fyrir %s korti %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(eining %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -744,7 +744,7 @@ msgid ""
msgstr ""
# ## skrytid
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -755,17 +755,17 @@ msgstr ""
"Vifng eru gefin upp sem ``vifang=gildi vifang2=gildi2 ...''.\n"
"Til dmis: ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Stillingar kjarnaeininga:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvaa %s rekil viltu prfa?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -782,15 +782,15 @@ msgstr ""
" hann arf? Stundum frystir sjlfvirk stilling vlina en a tti ekki\n"
"a skemma neitt."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Stilla sjlfvirkt"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Stilla handvirkt"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -799,62 +799,62 @@ msgstr ""
"Innsetning einingu %s mistkst.\n"
"Viltu prfa aftur me lk vifng?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s er n egar til)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "etta lykilor er of einfalt"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Vinsamlega slu inn notandanafn"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Notandanafni m bara innihalda litla stafi, tlustafi, `-' og `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "etta notandanafn er n egar til"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "etta notandanafn er n egar til"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Bta vi notanda"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -863,32 +863,32 @@ msgstr ""
"Slu inn notanda\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Samykkja notanda"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nafn notanda"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Notandanafn:"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Skel"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr ""
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -897,59 +897,59 @@ msgstr ""
"g get stillt tlvuna na til a kveikja sjlfvirkt X vi rsingu\n"
"Vilt kveikja X vi endurrsingu?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
#, fuzzy
msgid "Choose the default user:"
msgstr "Veldu nja str"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
#, fuzzy
msgid "Choose the window manager to run:"
msgstr "Veldu forriti sem vilt nota"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Hvernig ms ertu me?"
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr ""
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Bta vi notanda"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "Stabundinn prentari"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Hvaa pakka viltu setja inn"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -958,55 +958,55 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Velkomin(n) tlvurjtinn"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Llegt"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Htt"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Htt"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Taugaveikla"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1015,13 +1015,13 @@ msgstr ""
"etta er hi hefbundna ryggi sem mlt er me fyrir tlvu sem verur notu\n"
"til a tengja vi neti sem biill. ryggisathuganir eru nna gangi. "
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1035,7 +1035,7 @@ msgstr ""
"ryggi er ngu ngu miki til a taka vi fyrirspurnum fr\n"
"mrgum bilum. "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1044,36 +1044,36 @@ msgstr ""
"Kerfi er komi 4. stig og er n alveg loka.\n"
"ryggi er hsta stigi."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Upplsingar"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Hvernig ms ertu me?"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Stilli ryggisrep"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Veldu valmguleika fyrir jn"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1086,7 +1086,7 @@ msgstr ""
# 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_.c:381
+#: ../../bootloader.pm_.c:429
#, fuzzy, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1113,58 +1113,58 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr ""
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Hvert viltu setja rsistjrann?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1222,130 +1222,130 @@ msgstr "Hringja inn me mtaldi"
msgid "Yaboot mode"
msgstr "Rsitki"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Setja kerfi inn"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Ba til nja disksnei"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Villa"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "tki"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Veldu innsetningarflokk"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Veldu prenttengingu"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Stilla X"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Val pakkahp"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
#, fuzzy
msgid "Themes"
msgstr "Tr"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1354,44 +1354,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1497,53 +1497,61 @@ msgstr "ratengd"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "N"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Aftengja"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Tengipunktur"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
#, fuzzy
msgid "Server"
msgstr "netjnn"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Tengipunktur"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Hvernig ms ertu me?"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "netjnn"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Tengipunktur: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, fuzzy, c-format
msgid "Options: %s"
msgstr "Rtardisksnei"
@@ -1631,7 +1639,7 @@ msgstr "Tm"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Anna"
@@ -1784,7 +1792,7 @@ msgstr ""
"Disksneiin sem var tekin sem afrit er ekki af smu str\n"
"Halda fram?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Avrun"
@@ -2335,7 +2343,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
#, fuzzy
msgid "Username"
msgstr "Notandanafn:"
@@ -2350,23 +2358,23 @@ msgstr "NIS ln"
msgid "Search servers"
msgstr "Nafnamilari"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, fuzzy, c-format
msgid "%s formatting of %s failed"
msgstr "gat ekki forsnii %s"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "kann ekki a forsna %s af tegundinni %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "villa vi a aftengja %s: %s"
@@ -2447,46 +2455,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Villa vi a opna %s til skriftar: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Uppsetning"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Sem jn"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "Hjlp"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Prfunar skilgreining"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Augnablik..."
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2612,7 +2685,8 @@ msgid "/_Quit"
msgstr "Htta"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
#, fuzzy
msgid "/_Help"
msgstr "Hjlp"
@@ -2634,75 +2708,77 @@ msgstr ""
#: ../../harddrake/ui.pm_.c:71
#, fuzzy
+msgid "/_Report Bug"
+msgstr "Llegt"
+
+#: ../../harddrake/ui.pm_.c:73
+#, fuzzy
msgid "/_About..."
msgstr "Tengipunktur"
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Stilla sjlfvirkt"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Nota fnstillingar hrum disk(um)"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Skoau vlbnaarupplsingar"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Sna upplsingar"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Tilgreindu ms"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "%s tengipunktur er n egar til"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Augnablik..."
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Vifng fyrir fjartengda lpd prentara"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "Htti eftir %d sekndur"
@@ -3755,7 +3831,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3770,7 +3846,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3779,31 +3855,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Get ekki nota tsendingu n NIS lns"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Settu tman diskling drif %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "villa vi lestur r skrnni %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4054,7 +4130,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Velkomin(n) tlvurjtinn"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ekkert disklingadrif agengilegt"
@@ -4081,11 +4157,11 @@ msgstr "Innsetningarafer"
msgid "Please choose one of the following classes of installation:"
msgstr "Vinsamlega tilgreindu eftirfarandi"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Val pakkahp"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
#, fuzzy
msgid "Individual package selection"
msgstr "Val pakkahp"
@@ -4162,7 +4238,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Innsetning"
@@ -4185,7 +4261,7 @@ msgstr "Fjarlgja"
msgid "Choose the packages you want to install"
msgstr "Veldu pakkana sem vilt setja inn"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Set inn"
@@ -4213,19 +4289,19 @@ msgid "Installing package %s"
msgstr "Set inn pakka %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
#, fuzzy
msgid "Accept"
msgstr "Samykkja notanda"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#, fuzzy
msgid "Refuse"
msgstr "Endurstkka"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4236,16 +4312,16 @@ msgid ""
msgstr ""
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Viltu samt halda fram?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "a kom upp villa vi a raa pkkum:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
#, fuzzy
msgid "There was an error installing packages:"
msgstr "a kom upp villa vi a raa pkkum:"
@@ -4343,7 +4419,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4421,7 +4497,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Lyklabor"
@@ -4638,47 +4714,47 @@ msgstr "Settu tman diskling drif %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Veldu pakka til a setja inn"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Augnablik"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Undirb innsetningu"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4687,21 +4763,21 @@ msgstr ""
"Set inn pakka %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Lokauppsetning"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Settu tman diskling drif %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Settu tman diskling drif %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
#, fuzzy
msgid ""
"You now have the opportunity to download encryption software.\n"
@@ -4784,7 +4860,7 @@ msgstr ""
"Altadena, California, 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4796,168 +4872,168 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Hef samband vi vlina til a skja lista yfir fanlega pakka"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Veldu spegilvlina aan sem a skja pakkanna"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Hef samband vi vlina til a skja lista yfir fanlega pakka"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
#, fuzzy
msgid "Which is your timezone?"
msgstr " hvaa tmasvi ertu?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Veltu stilla tlvuklukkuna GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS jnn"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
#, fuzzy
msgid "Remote CUPS server"
msgstr "Fjartengd prentr"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
#, fuzzy
msgid "No printer"
msgstr "Stabundinn prentari"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Er kannski eitt enn vlinni?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
#, fuzzy
msgid "Mouse"
msgstr "USB ms"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Prentari"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Nota NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Upplsingar"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Stabundinn prentari"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "kvea rtarlykilor"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Ekkert lykilor"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "etta lykilor er of einfalt (verur a vera minnst %d stafa langt)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Aukenning"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Aukenning"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "netjnn"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "Aukenning NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS ln"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS jnn"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4973,21 +5049,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Aukenning"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nafn lns"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5016,21 +5092,21 @@ msgstr ""
" vlinni ef alvarleg vandaml koma upp.\n"
"Viltu ba til rsidiskling fyrir vlina na?"
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
#, fuzzy
msgid "First floppy drive"
msgstr "Fyrsta drif"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
#, fuzzy
msgid "Second floppy drive"
msgstr "Anna drif"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Sleppa"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5057,7 +5133,7 @@ msgstr ""
"Viltu ba til rsidiskling fyrir vlina na?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5066,28 +5142,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Ekkert disklingadrif til staar"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Veldu disklingadrifi sem vilt nota til a gera rsidisk"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Settu tman diskling drif %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "B til rsidiskling..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Set upp rsistjrann..."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5095,28 +5171,28 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Viltu nota SILO?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Setja inn rsihlaara"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Innsetning LILO brst skum eftirfarandi villu:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5127,18 +5203,18 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, fuzzy, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Settu tman diskling drif %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
#, fuzzy
msgid "Creating auto install floppy..."
msgstr "Undirb innsetningu"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5148,7 +5224,7 @@ msgstr ""
"\n"
"Viltu virkilega htta nna?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5178,16 +5254,16 @@ msgstr ""
"Frekari upplsingar um hvernig a stilla vlina eftir innsetninguna er a\n"
"finna vieigandi kafla Official Mandrake Linux User's Guide bkinni."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Undirb innsetningu"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5196,17 +5272,17 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
#, fuzzy
msgid "Automated"
msgstr "Sjlfvirkt IP"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
#, fuzzy
msgid "Replay"
msgstr "Endurhlaa"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
#, fuzzy
msgid "Save packages selection"
msgstr "Val pakkahp"
@@ -5244,14 +5320,14 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Texta"
@@ -5718,7 +5794,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr ""
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5861,17 +5937,17 @@ msgstr "Bi"
msgid "No mouse"
msgstr "Engin ms"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
#, fuzzy
msgid "Please test the mouse"
msgstr "Hvernig ms ertu me?"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
#, fuzzy
msgid "To activate the mouse,"
msgstr "Hvernig ms ertu me?"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr ""
@@ -5908,35 +5984,31 @@ msgstr "Loka tr"
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
#, fuzzy
msgid "Connect to the Internet"
msgstr "Nafn tengingar"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr ""
@@ -6030,7 +6102,7 @@ msgstr "Vi hvaa ratengi er msin n tengd?"
msgid "no network card found"
msgstr "ekkert netkort fannst"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Stilli staarnetstenginu"
@@ -6047,16 +6119,16 @@ msgstr ""
"vistfang gttarinnar ef veist hva a vistfang er.\n"
"Gttin gefur r agang t r staarnetinu (t.d. Interneti)."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
#, fuzzy
msgid "Host name"
msgstr "Vlarheiti:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Netstillingar"
@@ -6099,8 +6171,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Les uppsetningarskr"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
#, fuzzy
msgid "ISDN Configuration"
msgstr "Uppsetning"
@@ -6135,26 +6207,31 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Hvaa sneitegund viltu?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
#, fuzzy
msgid "What kind of card do you have?"
msgstr "Hvernig prentara ertu me?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr ""
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
#, fuzzy
msgid "ISA / PCMCIA"
msgstr "PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
#, fuzzy
msgid "PCI"
msgstr "PCMCIA"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6163,27 +6240,27 @@ msgid ""
"card.\n"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
#, fuzzy
msgid "Continue"
msgstr "Halda samt fram?"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
#, fuzzy
msgid "Which is your ISDN card?"
msgstr " hvaa tmasvi ertu?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
@@ -6239,62 +6316,62 @@ msgstr "Aal nafnamilari"
msgid "Second DNS Server (optional)"
msgstr "Vara nafnamilari"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Hvaa disk viltu fra til?"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Nafn tengingar"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Hvaa disk viltu fra til?"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "Nafn tengingar"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
#, fuzzy
msgid "Internet connection & configuration"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6306,12 +6383,12 @@ msgid ""
"Press OK to continue."
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netstillingar"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6319,7 +6396,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6327,107 +6404,107 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Veldu nja str"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
#, fuzzy
msgid "Expert Mode"
msgstr "F. snillinga"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Leita a tkjum..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy
msgid "Normal modem connection"
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "%s tengipunktur er n egar til"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, fuzzy
msgid "ISDN connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "Cable connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "LAN connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Veldu forriti sem vilt nota"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "Viltu nota aboot?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
#, fuzzy
msgid "Network configuration"
msgstr "Netstillingar"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6435,27 +6512,27 @@ msgid ""
"%s"
msgstr "Viltu prfa skilgreininguna"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6463,7 +6540,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6473,45 +6550,45 @@ msgstr ""
" a vera IP tala ritu me punkt milli.\n"
"(dmi 192.168.1.13)"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Stilli nettki %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "XFree86 jnn: %s\n"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
#, fuzzy
msgid "IP address"
msgstr "IP vistfang:"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
#, fuzzy
msgid "Netmask"
msgstr "Netsa:"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Sjlfvirkt IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Ba til rsidiskling"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP vistfang a vera sniinu 192.168.1.10"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6523,43 +6600,54 @@ msgstr ""
"vistfang gttarinnar ef veist hva a vistfang er.\n"
"Gttin gefur r agang t r staarnetinu (t.d. Interneti)."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Nafnamilari"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gtt (tki)"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP vistfang a vera sniinu 192.168.1.10"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP vistfang a vera sniinu 192.168.1.10"
+
+#: ../../network/network.pm_.c:394
#, fuzzy
msgid "Proxies configuration"
msgstr "Lokauppsetning"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP sel:"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP Sel:"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Sel a vera http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Sel a vera ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Sel a vera http://..."
#: ../../network/shorewall.pm_.c:24
#, fuzzy
@@ -7952,7 +8040,7 @@ msgstr "Keyri upp neti"
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8457,11 +8545,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Sel a vera http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8511,6 +8594,43 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ekki ngu margar disksneiar fyrir RAID %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Stilli ryggisrep"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Stilli ryggisrep"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Vifng fyrir fjartengda lpd prentara"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ? (sjlfgefi %s) "
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Stilli ryggisrep"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Undirb innsetningu"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8745,7 +8865,7 @@ msgstr "Endursn..."
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8842,7 +8962,7 @@ msgstr "Nafn tengingar"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -8890,7 +9010,7 @@ msgstr "Endursn..."
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8915,7 +9035,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -8931,7 +9051,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8946,7 +9066,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -8995,8 +9115,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -9033,11 +9153,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Set inn pakka %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Stimplau ig t og slu Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Stimplau ig aftur inn %s til a virkja breytingarnar"
@@ -9085,17 +9205,6 @@ msgstr "Bta vi notanda"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "Hjlp"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9148,52 +9257,67 @@ msgstr "Bta vi notanda"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Uppsetning"
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Uppsetning"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "Stilla X"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Settu tman diskling drif %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ekkert disklingadrif agengilegt"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9317,13 +9441,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Prfa tengi"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9332,41 +9456,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Ekkert lykilor"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Villa vi a opna %s til skriftar: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9377,67 +9501,67 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Skemmd afritsskr"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Skemmd afritsskr"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Skemmd afritsskr"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9445,908 +9569,910 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Villa vi lestur skrarinnar %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Val pakkahp"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Fjartengd prentr"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Hvernig ms ertu me?"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Reyndu aftur"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Hvernig ms ertu me?"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "kvea rtarlykilor"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Hvaa lyklaborsuppsetningu viltu?"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Smelltu disksnei"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Smelltu disksnei"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Smelltu disksnei"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Smelltu disksnei"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Smelltu disksnei"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Velji skr"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Veldu pakkana sem vilt setja inn"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Veldu pakkana sem vilt setja inn"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Veldu pakkana sem vilt setja inn"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Hvernig ms ertu me?"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Skemmd afritsskr"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Geiri"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tegund"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Notandanafn:"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Hvernig ms ertu me?"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Augnablik"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "stig"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "stig"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Stillingar kjarnaeininga:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Veldu pakkana sem vilt setja inn"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Veldu pakkana sem vilt setja inn"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Setja upp skrarkerfi"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Ms: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Upplsingar"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Hvaa ratengi er mtaldi tengt vi?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Hvernig ms ertu me?"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Hvernig ms ertu me?"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Endurheimta fr skr"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr ""
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Anna"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Setja kerfi inn"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Endurheimta fr skr"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Endurheimta fr skr"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Fjartengd prentr"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Endurheimta fr skr"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Endurheimta fr diskling"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Endurheimta fr diskling"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Endurheimta fr skr"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Vlarheiti:"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Lykilor"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Notandanafn:"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Vlarheiti:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Endurheimta fr skr"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Srlagaa"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Endurheimta fr diskling"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Endurheimta fr skr"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "netjnn"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Endurstkka"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Eftirfarandi pakkar vera fjarlgir"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Skemmd afritsskr"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Skemmd afritsskr"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Skemmd afritsskr"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Vista skr"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10378,7 +10504,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10387,7 +10513,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10428,7 +10554,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10456,17 +10582,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10483,7 +10609,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10523,7 +10649,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10534,7 +10660,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10547,7 +10673,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10629,8 +10755,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Sel stillingar"
@@ -10707,29 +10833,29 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Llegt"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Htta innsetningu"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "connecting to Bugzilla wizard ..."
msgstr "Uppsetning"
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr ""
@@ -10838,11 +10964,6 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Prfunar skilgreining"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -10966,7 +11087,7 @@ msgstr "Stillingar kjarnaeininga:"
msgid "Size"
msgstr "Str: %s"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
#, fuzzy
msgid "drakfloppy"
msgstr "Endurheimta fr diskling"
@@ -11042,24 +11163,24 @@ msgstr ""
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Stilla nettengingu"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11517,156 +11638,156 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Vinnuhpur"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "Rtardisksnei"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "USB ms"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Eya"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
#, fuzzy
msgid "edit"
msgstr "Milungs"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Bi"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Bta vi notanda"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Stabundinn prentari"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Fjartengd prentr"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Samykkja notanda"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "tgfa: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Llegt"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Val pakkahp"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Notandaheiti:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Vinnuhpur"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Veldu prenttengingu"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11678,136 +11799,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Lokauppsetning"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Upplausn"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Veldu ager"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Samntingarheiti"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Lokauppsetning"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Htta"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Setja kerfi inn"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Setja upp prentara"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
-msgid "the color of the progress bar"
+msgid "the heigth of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "preview"
+msgid "Preview"
msgstr "tki"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "choose color"
-msgstr "Veldu skj"
+msgid "Save theme"
+msgstr "Setja kerfi inn"
#: ../../standalone/draksplash_.c:124
+#, fuzzy
+msgid "Choose color"
+msgstr "Veldu skj"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Veldu prenttengingu"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Prenttki:"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Leita a tkjum..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11946,6 +12078,12 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
@@ -11974,11 +12112,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr ""
@@ -12267,16 +12405,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12354,7 +12489,7 @@ msgstr "Setja kerfi inn"
msgid "Exit install"
msgstr "Htta innsetningu"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12613,6 +12748,17 @@ msgstr "Margmilun"
msgid "Scientific Workstation"
msgstr "Upplsingar"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Lokauppsetning"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Sel a vera ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Htta"
+
#~ msgid "You don't have any partitions!"
#~ msgstr " hefur ekki neinar disksneiar"
@@ -12694,9 +12840,6 @@ msgstr "Upplsingar"
#~ msgid "Test again"
#~ msgstr "Prfa aftur"
-#~ msgid "Setting security level"
-#~ msgstr "Stilli ryggisrep"
-
#~ msgid "Select a graphics card"
#~ msgstr "Veldu skjkort"
@@ -12779,9 +12922,6 @@ msgstr "Upplsingar"
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "ljst (%s), vertu nkvmari\n"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (sjlfgefi %s) "
-
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "itt val? (sjlfgefi %s slu inn `none' fyrir engan) "
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index 40839698c..32ef6dbb8 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-09-04 20:02+0200\n"
"Last-Translator: Roberto Rosselli Del Turco <rosselli@ling.unipi.it>\n"
"Language-Team: Italian <it@li.org>\n"
@@ -92,24 +92,24 @@ msgstr "Configura tutte le testine indipendentemente"
msgid "Use Xinerama extension"
msgstr "Usa l'estensione Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configura solo la scheda \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s con accelerazione 3D hardware"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -119,19 +119,19 @@ msgstr ""
"La tua scheda supportata da XFree %s che potrebbe avere un miglior "
"supporto in 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La tua scheda pu avere il supporto per l'accelerazione 3D hardware con "
"XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con accelerazione 3D hardware SPERIMENTALE"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -143,7 +143,7 @@ msgstr ""
"La tua scheda supportata da XFree %s che potrebbe avere un miglior "
"supporto in 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -152,12 +152,12 @@ msgstr ""
"La tua scheda pu avere l'accelerazione 3D hardware con XFree %s,\n"
"NOTA CHE UN SUPPORTO SPERIMENTALE E POTREBBE BLOCCARE IL TUO COMPUTER."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installazione driver video)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Condivisione personalizzata"
@@ -178,32 +178,32 @@ msgstr "Risoluzione"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opzioni"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Esci"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -302,25 +302,25 @@ msgstr "Seleziona risoluzione e profondit di colore"
msgid "Graphics card: %s"
msgstr "Scheda grafica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Annulla"
@@ -397,11 +397,11 @@ msgstr "Server XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X all'avvio"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -410,7 +410,7 @@ msgstr ""
"Posso configurare il tuo computer per eseguire X automaticamente all'avvio.\n"
"Vuoi che X venga eseguito quando riavvierai?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Di che tipo la tua connessione ISDN?"
@@ -495,7 +495,7 @@ msgstr "Compatta"
msgid "compact"
msgstr "compatta"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Modo video"
@@ -503,17 +503,17 @@ msgstr "Modo video"
msgid "Delay before booting default image"
msgstr "Ritardo prima di avviare con l'immagine predefinita"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Password"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Password (ripeti)"
@@ -549,14 +549,14 @@ msgstr ""
"L'opzione ''Limita opzioni della linea di comando'' inutile\n"
"senza un password"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Per favore prova di nuovo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Le password non corrispondono"
@@ -599,7 +599,7 @@ msgstr ""
"\n"
"Da quale disco effettuate il boot?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -607,148 +607,148 @@ msgstr ""
"Queste sono le voci attuali.\n"
"Puoi aggiungerne altre o cambiare quelle esistenti."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Aggiungi"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Fatto"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modifica"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Che tipo di voce vuoi aggiungere"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Altro OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Altro OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Altro OS (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Immagine"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Aggiungi"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lettura-scrittura"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabella"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Non sicuro"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etichetta"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Predefinito"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Dimensioni Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "No Video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Rimuovi voce"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Etichetta vuota non ammessa"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Dovete indicare l'immagine di un kernel"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Devi specificare una partizione radice"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Questa etichetta gi stata usata"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovate %s interfacce %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Ne hai un'altra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hai una qualsiasi interfaccia %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "S"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Vedi informazioni hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installazione driver per scheda %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -758,7 +758,7 @@ msgstr ""
"Si noti che ogni indirizzo dovrebbe essere inserito con il prefisso 0x(ad "
"es. '0x123')."
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -769,17 +769,17 @@ msgstr ""
"Le opzioni sono in formato ''nome=valore nome2=valore2 ...''.\n"
"Per esempio, ''io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opzioni del modulo:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quale driver %s dovrei provare?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -797,15 +797,15 @@ msgstr ""
"informazioni di cui ha bisogno? Occasionalmente, la ricerca bloccher il\n"
"computer, ma non dovrebbe causare alcun danno."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Investgazione automatica"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Specifica opzioni"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -814,64 +814,64 @@ msgstr ""
"Caricamento del modulo %s fallito.\n"
"Vuoi riprovare con altri parametri?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "accesso ai programmi X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "accesso agli strumenti RPM"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "permetti \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "accesso ai file di amministrazione del sistema"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "accesso agli strumenti RPM"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "accesso agli strumenti RPM"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s gi aggiunto)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Questo password troppo semplice"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Per favore fornisci un nome utente"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Il nome utente deve contenere solo lettere minuscole, numeri, '-' e '_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Questo nome utente troppo lungo"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Questo nome utente gi stato aggiunto"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Aggiungi utente"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -880,32 +880,32 @@ msgstr ""
"Inserisci un utente\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Accetta utente"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Vero nome"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nome utente"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -914,19 +914,19 @@ msgstr ""
"utente all'avvio.\n"
"Vuoi sfruttare questa caratteristica?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Scegli l'utente predefinito"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Scegli il window manager da eseguire:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Per favore, scegli la lingua da utilizzare."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -934,35 +934,35 @@ msgid ""
msgstr ""
"Potete scegliere altre lingue che saranno disponibili dopo l'installazione"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tutto"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Permetti a tutti gli utenti"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Nessuna condivisione"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Il pacchetto %sdeve essere installato. Volete installarlo?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Potete esportare usando NFS o Samba. Quale desiderate"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Il pacchetto obbligatorio %s assente"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -977,11 +977,11 @@ msgstr ""
"\n"
"\"Custom\" permette un controllo pi preciso per ogni utente.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Lancia userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -989,31 +989,31 @@ msgstr ""
"La condivisione in base all'utente usa il gruppo \"fileshare\".\n"
"Potete utilizzare userdrake per aggiungere un utente a questo gruppo."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Benvenuti cracker"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Scarso"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Normale"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Pi alto"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1023,7 +1023,7 @@ msgstr ""
"ma molto delicato: non deve essere usato per una macchina connessa ad altre\n"
"o ad Internet. Non c' nessun accesso con password."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1031,7 +1031,7 @@ msgstr ""
"Ora le password sono abilitate, ma l'uso come computer di rete comunque\n"
"ancora sconsigliato."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1040,7 +1040,7 @@ msgstr ""
"usare per\n"
"connettersi ad Internet come cliente."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1048,7 +1048,7 @@ msgstr ""
"Esistono gi alcuni limiti, e ogni notte vengono eseguiti ulteriori "
"controlli automatici."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1066,7 +1066,7 @@ msgstr ""
"livello\n"
"pi basso."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1074,36 +1074,36 @@ msgstr ""
"Basato sul livello precedente, ma ora il sistema completamente\n"
"chiuso. Le funzioni di sicurezza sono al massimo."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opzioni"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Scegli livello di sicurezza"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Livello di sicurezza"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Usa libsafe per i server"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Una libreria che difende il sistema da attacchi del tipo \"buffer overflow\" "
"e \"format string\"."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1111,7 +1111,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1127,59 +1127,59 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvenuti su GRUB, il selezionatore di sistemi operativi!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Usate i tasti %ce%c per evidenziare la voce che interessa."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Premete Invio per avviare il sistema operativo selezionat, 'e' per modificare"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "i comandi prima del boot, o 'c' per avere una linea di comando."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La voce evidenziata verr avviata automaticamente in %d secondi."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "spazio insufficiente in /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Menu di avvio"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Non puoi installare il bootloader su una partizione %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "nessun aiuto presente (per ora).\n"
@@ -1231,107 +1231,107 @@ msgstr "Modo LILO/GRUB"
msgid "Yaboot mode"
msgstr "Modo Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Installa sistema"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Crea una nuova partizione"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Errore"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Sto copiando %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "No Video"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
# there is no room to put "Scegli classe d'installazione"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Classe d'installazione"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1340,22 +1340,22 @@ msgstr ""
"Al momento state usando %s come Boot Manager.\n"
"Cliccate su Configura per lanciare l'assistente di configurazione."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configura"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Salva scelta pacchetti"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1364,44 +1364,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Modo sistema"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Lancia il sistema X Window all'avvio"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "No, non voglio il login automatico"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "S, voglio il login automatico con questo (utente, desktop)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Non riesco ad aprire /etc/inittab in lettura: %s"
@@ -1498,53 +1498,61 @@ msgstr "Austria"
msgid "United States"
msgstr "Stati Uniti"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "nuovo"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Esegui unmount"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Esegui mount"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto di mount"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Per favore, insersci la velocit del masterizzatore"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Punto di mount:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opzioni: %s"
@@ -1633,7 +1641,7 @@ msgstr "Vuoto"
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Altro"
@@ -1777,7 +1785,7 @@ msgstr ""
"La copia di sicurezza della tabella delle partizioni non ha la stessa\n"
"dimensione. Continuo comunque?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Attenzione"
@@ -2338,7 +2346,7 @@ msgstr ""
"Per favore digitate il vostro nome utente, il password e il nome di dominio\n"
"per poter accedere a questo host."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Nome utente"
@@ -2350,23 +2358,23 @@ msgstr "Dominio"
msgid "Search servers"
msgstr "Ricerca server"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formattazione di %s fallita"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Non so come formattare %s in tipo %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "il mount della partizione %s sulla directory %s non riuscito"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "errore in fase di unmount di %s: %s"
@@ -2452,48 +2460,111 @@ msgstr "Nulla da fare"
msgid "Error opening %s for writing: %s"
msgstr "Errore aprendo %s in scrittura: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Configurazione di CUPS"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Driver"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Aiuto"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Per favore attendi... sto applicando la configurazione"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Attendere prego"
+
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "Driver X"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Modello sconosciuto"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2617,7 +2688,8 @@ msgid "/_Quit"
msgstr "/_Esci"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Guida"
@@ -2636,69 +2708,70 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Segnala un bug"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Informazioni su..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Autore:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Versione di Harddrake2 "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Hardware identificato"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informazioni"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Configura modulo"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Identificazione in corso"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Attendere prego"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Sto eseguendo \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "secondario"
@@ -2727,10 +2800,10 @@ msgid ""
msgstr ""
"Per la maggior parte delle schede sintonizzatore TV moderne, il modulo bttv "
"del kernel GNU/Linux si limita\n"
-"ad identificare automaticamente i parametri corretti. Se la vostra scheda non "
-" stata identificata correttamente, potete indicare il tipo giusto di scheda "
-"e sintonizzatore qui. Dovete solo selezionare i parametri della vostra "
-"scheda TV se necessario."
+"ad identificare automaticamente i parametri corretti. Se la vostra scheda "
+"non stata identificata correttamente, potete indicare il tipo giusto di "
+"scheda e sintonizzatore qui. Dovete solo selezionare i parametri della "
+"vostra scheda TV se necessario."
#: ../../harddrake/v4l.pm_.c:213
msgid "Card model:"
@@ -3114,7 +3187,8 @@ msgid ""
"If you wish to configure the network later after installation, or if you\n"
"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Se desiderate connettere il vostro computer ad Internet o ad una rete locale,\n"
+"Se desiderate connettere il vostro computer ad Internet o ad una rete "
+"locale,\n"
"assicuratevi di scegliere l'opzione corretta. Accendete la periferica che\n"
"dovrete usare per connettervi prima di scegliere l'opzione adeguata, per\n"
"permettere a DrakX di individuarla automaticamente.\n"
@@ -3644,7 +3718,8 @@ msgstr ""
"relativi alla sicurezza. Per permettervi di beneficiare di questi\n"
"aggiornamenti vi verr proposto di scaricare la nuova versione dei\n"
"pacchetti usando Internet. Scegliete \"S\" se potete contare su una\n"
-"connessione ad Internet funzionante, oppure \"No\" se preferite installare i\n"
+"connessione ad Internet funzionante, oppure \"No\" se preferite installare "
+"i\n"
"pacchetti aggiornati in un secondo momento.\n"
"\n"
"Se scegliete \"S\" comparir una lista di siti da cui possibile\n"
@@ -4203,7 +4278,8 @@ msgstr ""
"l'autenticazione. Se non siete sicuri, chiedete al vostro amministratore di\n"
"rete.\n"
"\n"
-"Se il vostro computer non connesso ad una rete soggetta ad autenticazione,\n"
+"Se il vostro computer non connesso ad una rete soggetta ad "
+"autenticazione,\n"
"scegliete \"File locali\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -4747,7 +4823,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Dovete formattare anche %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4771,7 +4847,7 @@ msgstr ""
"\n"
"Vuoi davvero installare questi server?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4780,20 +4856,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Non posso usare broadcast senza un dominio NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inserisci un floppy MS-DOS nel drive %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Questo floppy non stato formattato usando MS DOS/Windows"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4801,12 +4877,12 @@ msgstr ""
"Per usare la selezione di pacchetti che avete salvato, dovete cominciare "
"l'installazione digitando ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Errore leggendo il file %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -5052,7 +5128,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Benvenuto a %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nessun drive floppy disponibile"
@@ -5081,11 +5157,11 @@ msgstr "Classe d'installazione"
msgid "Please choose one of the following classes of installation:"
msgstr "Per favore, scegli una delle seguenti classi d'installazione:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Selezione Gruppi di Pacchetti"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Selezione individuale pacchetti"
@@ -5163,7 +5239,7 @@ msgstr "Mostra i pacchetti selezionati automaticamente"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installa"
@@ -5183,7 +5259,7 @@ msgstr "Installazione minima"
msgid "Choose the packages you want to install"
msgstr "Scegli i pacchetti da installare"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Installazione"
@@ -5210,17 +5286,17 @@ msgid "Installing package %s"
msgstr "Installazione del pacchetto %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accetta"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Rifiuta"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5233,20 +5309,20 @@ msgstr ""
"\n"
"Per favore inserisci il Cd-Rom chiamato \"%s\" nel tuo lettore e premi Ok "
"quando\n"
-" pronto. Se non ce l'hai, premi Annulla per evitare l'installazione da questo "
-"Cd-Rom."
+" pronto. Se non ce l'hai, premi Annulla per evitare l'installazione da "
+"questo Cd-Rom."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Vado avanti comunque?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "C' stato un errore ordinando i pacchetti:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "C' stato un errore installando i pacchetti:"
@@ -5375,7 +5451,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5466,12 +5542,13 @@ msgstr ""
"usare in qualsiasi modo il Software implica l'esplicita accettazione e il "
"pieno consenso ad adeguarsi ai termini e alle condizioni di questa Licenza. "
"Se non siete d'accordo con uno o pi punti della Licenza, non avete "
-"l'autorizzazione ad installare, duplicare o utilizzare il Software. Qualunque "
-"tentativo di installare, duplicare o utilizzare il Software in modi non "
-"conformi ai termini e alle condizioni della Licenza porter automaticamente "
-"all'annullamento della licenza e alla revoca dei vostri diritti ai sensi "
-"della stessa. Una volta invalidata la Licenza, avete l'obbligo di "
-"distruggere immediatamente tutte le copie del Software in vostro possesso.\n"
+"l'autorizzazione ad installare, duplicare o utilizzare il Software. "
+"Qualunque tentativo di installare, duplicare o utilizzare il Software in "
+"modi non conformi ai termini e alle condizioni della Licenza porter "
+"automaticamente all'annullamento della licenza e alla revoca dei vostri "
+"diritti ai sensi della stessa. Una volta invalidata la Licenza, avete "
+"l'obbligo di distruggere immediatamente tutte le copie del Software in "
+"vostro possesso.\n"
"\n"
"\n"
"2. Garanzia e limiti della garanzia\n"
@@ -5549,7 +5626,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastiera"
@@ -5760,11 +5837,11 @@ msgstr "Inserisci un floppy contenente la scelta dei pacchetti"
msgid "Selected size is larger than available space"
msgstr "Lo spazio indicato maggiore dello spazio disponibile"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Tipo di installazione"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5772,19 +5849,19 @@ msgstr ""
"Non avete selezionato nessun gruppo di pacchetti.\n"
"Per favore scegliete il tipo di installazione minima desiderato:"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Con X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Con la documentazione essenziale (raccomandata!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installazione veramente minima (in particolare niente urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5794,16 +5871,16 @@ msgstr ""
"Se non hai nessuno di questi CDs, clicca su Annulla.\n"
"Se mancano solo alcuni dei CD, deselezionali, e poi clicca Ok."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom chiamato \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Sto preparando l'installazione"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5812,21 +5889,21 @@ msgstr ""
"Installazione del pacchetto %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Configurazione post installazione"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Per favore inserisci il floppy di avvio utilizzato nel drive %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Per favore inserisci il floppy di aggiornamento moduli nel drive %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5902,7 +5979,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5923,161 +6000,161 @@ msgstr ""
"\n"
"Volete installare gli aggiornamenti?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Connessione con il sito Mandrake Linux per avere la lista dei mirror "
"disponibili"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Scegli un mirror da cui prendere i pacchetti"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Conessione al mirror per avere la lista dei pacchetti disponibili"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Qual' il tuo fuso orario?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "L'orologio del tuo hardware settato su GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronizzazione automatica dell'ora (usando NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Server NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Server CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nessuna stampante"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Hai una scheda audio ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Lanciate \"sndconfig\" dopo l'installazione per configurare la vostra scheda "
"audio"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Non stata rilevata nessuna scheda audio. Provate con \"harddrake\"\n"
"dopo l'installazione."
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Riepilogo"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Fuso orario"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Stampante"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Scheda ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Scheda audio"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Scheda TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Prendi i font di Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "File locali"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Scegli il password per root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Nessun Password"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Questo password troppo semplice (deve essere almeno di %d caratteri)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticazione"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autenticazione LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAPBasedn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autenticazione NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -6093,21 +6170,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticazione LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nome dominio"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -6136,19 +6213,19 @@ msgstr ""
"Se vuoi creare un disco di avvio per il tuo sistema, inserisci un floppy\n"
"nel primo drive e premi \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Primo drive floppy"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Secondo drive floppy"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Salta"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6174,7 +6251,7 @@ msgstr ""
"del sistema. Vuoi creare un disco di avvio per il tuo sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6188,29 +6265,29 @@ msgstr ""
"molto probabilmente non sar possibile creare un floppy di 1.44Mb\n"
"perch XFS necessita di in driver molto grande)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Spiacente, nessun drive floppy disponibile"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Scegli il drive floppy che vuoi utilizzare per creare il disco di avvio"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inserisci un floppy nel drive %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Creazione disco di avvio"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Preparazione del bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6222,11 +6299,11 @@ msgstr ""
"L'installazione continuer, ma dovrai usare\n"
" BootX per avviare il tuo computer"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Vuoi usare aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6234,16 +6311,16 @@ msgstr ""
"Errore installando aboot, \n"
"provo a forzare l'installazione anche se ci distrugge la prima partizione?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Sto installando il bootloader"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Installazione del bootloader fallita. Si verificato il seguente errore:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6260,17 +6337,17 @@ msgstr ""
" Poi digitate: shut-down\n"
"Al boot successivo dovreste vedere il prompt del bootloader."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inserisci un floppy vuoto nel drive %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Sto creando il floppy di installazione automatica ..."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6280,7 +6357,7 @@ msgstr ""
"\n"
"Vuoi veramente interrompere adesso?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6313,15 +6390,15 @@ msgstr ""
"capitolo\n"
"sulla post-installazione della Guida Ufficiale dell'Utente Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Crea il floppy di installazione automatica"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6336,15 +6413,15 @@ msgstr ""
"\n"
"Probabilmente preferirete ripetere l'installazione.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatizzata"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ripeti"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Salva scelta pacchetti"
@@ -6380,14 +6457,14 @@ msgstr "Avanzato"
msgid "Basic"
msgstr "Di base"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Indietro"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Successivo"
@@ -6837,7 +6914,7 @@ msgstr "Tasto \"Windows\" di destra"
msgid "Circular mounts %s\n"
msgstr "Mount circolari %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Prima rimuovi i volumi logici\n"
@@ -6975,15 +7052,15 @@ msgstr "nessuno"
msgid "No mouse"
msgstr "Nessun mouse"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Per favore prova il mouse"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Per attivare il mouse"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MUOVI LA RUOTA!"
@@ -7020,11 +7097,11 @@ msgstr "Raggruppa struttura"
msgid "Toggle between flat and group sorted"
msgstr "Cambia tra ordinamento semplice o a gruppi"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Connetti ad Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -7034,23 +7111,19 @@ msgstr ""
"Alcune connessioni usano pptp, poche usano dhcp.\n"
"Se non sai, scegli 'usa pppoe'."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "AlcatelspeedtouchUSB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "usa dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "usa pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "usa pptp"
@@ -7153,7 +7226,7 @@ msgstr ""
msgid "no network card found"
msgstr "nessuna scheda di rete trovata"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Sto configurando la rete"
@@ -7169,15 +7242,15 @@ msgstr ""
"Il tuo nome host dovrebbe essere un nome pienamente qualificato,\n"
"come ''mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "Nome host"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Wizard della configurazione di rete"
@@ -7225,8 +7298,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Vecchia configurazione (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Configurazione ISDN"
@@ -7262,23 +7335,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Quale protocollo vuoi usare?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Che tipo di scheda hai?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Non so"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7292,19 +7370,19 @@ msgstr ""
"\n"
"Se hai una scheda PCMCIA, devi sapere IRQ e I/O della tua scheda.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Annulla"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Continua"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Qual' la tua scheda ISDN?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7312,7 +7390,7 @@ msgstr ""
"Ho trovato una scheda ISDN PCI, ma non so di che tipo. Per favore seleziona "
"una scheda PCI nella prossima schermata."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Non trovo nessuna scheda ISDN PCI. Per favore selezionane una \n"
@@ -7366,7 +7444,7 @@ msgstr "Primo server DNS (opzionale)"
msgid "Second DNS Server (optional)"
msgstr "Secondo server DNS (opzionale)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7374,7 +7452,7 @@ msgstr ""
"\n"
"Puoi disconnetterti o riconfigurare la tua connessione."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7382,11 +7460,11 @@ msgstr ""
"\n"
"Puoi configurare nuovamente la connessione."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Adesso sei connesso ad Internet"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7394,32 +7472,32 @@ msgstr ""
"\n"
"Puoi connetterti ad Internet o configurare nuovamente la connessione."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "In questo momento non sei connesso ad Internet"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Connetti"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Disconnetti"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Configura la connessione"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Connessione & configurazione Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Adesso proseguiremo con la configurazione della connessione %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7438,12 +7516,12 @@ msgstr ""
"\n"
"Premi OK per cominciare."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configurazione della rete"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7455,7 +7533,7 @@ msgstr ""
"Clicca su Ok per mantenere questa configurazione, o su Annulla per "
"riconfigurare la rete e la connessione ad Internet.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7468,72 +7546,72 @@ msgstr ""
"Se non volete usare il riconoscimento automatico, deselezionate il \n"
"pulsante d'opzione.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Scegli il profilo da configurare"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Usa il riconoscimento automatico"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Modo Esperto"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Riconoscimento periferiche..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Connessione normale via modem"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "rilevato sulla porta: %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Connessione ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "rilevato %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Connessione ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "rilevato sull'interfaccia %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Connessione via cavo"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Rilevata connessione via cavo"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Connessione LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "rilevata scheda(e) ethernet"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Scegli il tipo di connessione che vuoi configurare"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7543,23 +7621,23 @@ msgstr ""
"Scegli quello che vuoi usare.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Connessione ad Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Vuoi effettuare la connessione all'avvio?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Configurazione della rete"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "La rete dev'essere riavviata"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7570,7 +7648,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7580,7 +7658,7 @@ msgstr ""
"\n"
"Adesso questa configurazione verr applicata al vostro sistema.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7588,7 +7666,7 @@ msgstr ""
"Dopo che questo sar stato fatto, vi raccomandiamo di riavviare il\n"
"vostro ambiente X per evitare problemi relativi al cambio di hostname."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7598,7 +7676,7 @@ msgstr ""
"Provate la connessione usando net_monitor o mcc. Se la connessione non "
"funziona, dovreste ripetere la configurazione."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7610,7 +7688,7 @@ msgstr ""
"Devi solo cliccare su OK per mantenere la precedente configurazione.\n"
"Modifiche ai campi qui sotto cambieranno questa configurazione."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7620,42 +7698,42 @@ msgstr ""
"Ogni dato dovrebbe essere inserito come un indirizzo IP in notazione\n"
"decimale puntata (ad esempio 1.2.3.4.)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Sto configurando il dispositivo di rete %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Indirizzo IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP automatico"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Attiva al momento del boot"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "L'indirizzo IP deve essere in formato 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7667,42 +7745,53 @@ msgstr ""
"come ''mybox.mylab.myco.com''.\n"
"Puoi anche inserire l'indirizzo IP del gateway se ne hai uno."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway(es.%s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dispositivo di gateway"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "L'indirizzo IP deve essere in formato 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "L'indirizzo IP deve essere in formato 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Configurazione dei proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Individua identit della scheda di rete (utile per i laptop)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Il proxy dovrebbe essere http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Il proxy dovrebbe essere ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "L'URL dovrebbe cominciare con 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9142,7 +9231,7 @@ msgstr "Sto stampando con la stampante \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9628,11 +9717,6 @@ msgstr ""
"Per favore completa le informazioni relative al proxy ftp\n"
"Lascia in bianco se non desideri un proxy ftp"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "L'URL dovrebbe cominciare con 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9680,6 +9764,43 @@ msgstr "mkraid fallito (forse manca raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Non ci sono abbastanza partizioni per RAID livello %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Livello di sicurezza"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Livello di sicurezza"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Amministrazione remota"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Predefinito)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Scegli livello di sicurezza"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Per favore attendi, sto preparando l'installazione"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Lancia il sistema audio ALSA (Advanced Linux Sound Architecture)"
@@ -9988,7 +10109,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistema"
@@ -10078,7 +10199,7 @@ msgstr "Connetti ad Internet"
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -10123,7 +10244,7 @@ msgstr "Interfacce utente"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10148,7 +10269,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -10164,7 +10285,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -10179,7 +10300,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -10227,8 +10348,8 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
@@ -10264,11 +10385,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installazione dei pacchetti ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Per favore esci e usa Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Per favore rientra come %s per attivare le modifiche"
@@ -10309,16 +10430,6 @@ msgstr "Aggiungi/Rimuovi utenti"
msgid "Add/Del Clients"
msgstr "Aggiungi/Rimuovi client"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Aiuto"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10367,48 +10478,63 @@ msgstr "Aggiungi utente -->"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Rimuovi client"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Configurazione dhcpd ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Configurazione avanzata"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Scrivi configurazione"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Per favore inserisci il floppy disk:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Nessun drive floppy disponibile!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10525,13 +10651,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "progresso totale"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10540,41 +10666,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Nessuna Password"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10585,65 +10711,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Backup dei file di sistema..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "File di backup su disco rigido..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Backup dei file dell'utente"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Progresso del backup del disco rigido..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Backup di altri file"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Usa unit a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10651,52 +10777,52 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr "trasmissione file via FTP"
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr "Errore durante l'invio della mail. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selezione file"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Selezionate i file e le directory e cliccate su 'Aggiungi'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10704,7 +10830,7 @@ msgstr ""
"\n"
"Per favore abilitate tutte le opzioni necessarie\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
@@ -10712,20 +10838,20 @@ msgstr ""
"nella\n"
"vostra directory /etc.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Backup dei vostri file di sistema (directory /etc)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Non includere file critici (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10733,131 +10859,133 @@ msgstr ""
"Grazie a questa opzione sarete in grado di ripristinare ogni versione della\n"
"vostra directory /etc."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Per favore scegli tutti gli utenti che vuoi includere nel backup"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Non includere la cache del navigatore"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Rimuovi quelli selezionati"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Utenti"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Usa unit a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Per favore inserisci il nome dell'host o l'IP"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "Per favore, indicate la directory in cui sono archiviati i backup"
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Per favore inserisci il tuo nomei di login"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Per favore inserisci il tuo password"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Ricorda questo password"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Per favore, scegliete lo spazio su CD"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10865,36 +10993,36 @@ msgstr ""
"Per favore, inserite il numero che identifica il vostro masterizzatore\n"
"ad esempio: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Scegli file"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Usa unit a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Per favore, inserite il nome del dispositivo da usare per il backup"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Per favore scegli tutti gli utenti che vuoi includere nel backup"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Per favore scegli tutti gli utenti che vuoi includere nel backup"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Per favore scegli tutti gli utenti che vuoi includere nel backup"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10902,57 +11030,57 @@ msgstr ""
"Per favore, indicate le dimensioni massime\n"
"concesse a Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Per favore inserisci la directory da salvare:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Usa una quota per i file di backup."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Rete"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Disco rigido /NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "ogni ora"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "ogni giorno"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "settimanale"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "ogni mese"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Usa demone"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10960,7 +11088,7 @@ msgstr ""
"Per favore, scegli la frequenza\n"
"del backup"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10968,7 +11096,7 @@ msgstr ""
"Per favore, scegli il supporto\n"
"del backup"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10977,71 +11105,71 @@ msgid ""
msgstr ""
"Per favore, accertatevi che il demone cron sia incluso fra i servizi attivi"
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Dopo ogni backup invia una mail rapporto a:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Cosa"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Dove"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Quando"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Altre opzioni"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Configurazione di Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Per favore scegliete dove volete effettuare il backup"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "sul disco rigido"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "sulla rete"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Per favore scegliete i pacchetti che volete installare."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Sistema di backup"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Fai il backup degli utenti"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Seleziona l'utente manualmente"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11049,7 +11177,7 @@ msgstr ""
"\n"
"Fonti del backup: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11057,7 +11185,7 @@ msgstr ""
"\n"
"- File di sistema:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11065,7 +11193,7 @@ msgstr ""
"\n"
"- File degli utenti:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11073,7 +11201,7 @@ msgstr ""
"\n"
"- Altri file:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11082,32 +11210,32 @@ msgstr ""
"\n"
"- Salva su disco rigido seguendo il percorso: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Dispositivo del mouse: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11116,12 +11244,12 @@ msgstr ""
"\n"
"- Salva via FTP sull'host: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11130,7 +11258,7 @@ msgstr ""
"\n"
"- Salva via FTP sull'host: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11139,7 +11267,7 @@ msgstr ""
"\t\tnome utente:%s\n"
"\t\tsul percorso:%s\n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11147,325 +11275,325 @@ msgstr ""
"\n"
"-Opzioni:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tNon includere file di sistema\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tEffettua backup usando tar e bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tI backup fanno uso di tar e gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Disco rigido.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Rete via SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Nessun file di configurazione, per favore cliccate su Assistente o "
"Avanzato.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr "Lista di dati da ripristinare:\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr "Lista di dati corrotti:\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Per favore scegliete a che porta seriale connesso il vostro modem."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "I file di backup sono corrotti"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr "Tutti i dati selezionati sono stati"
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr "Ripristinati con successo su%s"
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr "Ripristina configurazione"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK al ripristino degli altri file"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista degli utenti da ripristinare (solo la data pi recente per utente "
"importante)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Effettua il backup dei file di sistema prima di:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Per favore, scegliete la data da ripristinare"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Usa il disco rigido per effettuare il backup"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Per favore inserisci la directory da salvare:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Connessione FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Connessione sicura"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Ripristina da disco rigido"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Per favore, indicate la directory in cui sono archiviati i backup"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Scegliete un altro supporto dal quale effettuare il ripristino"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Altri supporti"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Ripristina sistema"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Ripristina utenti"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Ripristina altro"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "selezionate il percorso del ripristino (invece di / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Effettua nuovo backup prima del ripristino (solo per backup incrementali)."
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Rimuovi le directory dell'utente prima del ripristino."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Rimuovi quelli selezionati"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Ripristina altro"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "I file di backup sono corrotti"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Ripristina da disco rigido"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Ripristina tabella delle partizioni"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Ripristina utenti"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Nome host"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Password"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Nome utente"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Nome host: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Ripristina altro"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Ripristina tutti i backup"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Personalizza il ripristino"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Ripristina tabella delle partizioni"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Ripristina utenti"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Precedente"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Salva"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Costruisci backup"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Ripristina"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -11476,14 +11604,14 @@ msgstr ""
" la vostra mail di report non stata inviata\n"
" Per favore configurate sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "I seguenti pacchetti stanno per essere installati"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -11492,19 +11620,19 @@ msgstr ""
"Errore nella trasmissione del file via FTP.\n"
" Per favore, controllate la configurazione FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11512,59 +11640,59 @@ msgstr ""
"Nessun file di configurazione trovato\n"
"per favore cliccate su Assistente o Avanzato"
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Ancora in sviluppo ... attendere per favore."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Backup dei file di sistema"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Backup dei file degli utenti"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Backup di altri file"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Progresso totale"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "trasmissione file via FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Sto inviando ifile ..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Effettua il backup adesso sulla base del file di configurazione"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Vedi la configurazione di backup"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Configurazione dell'assistente"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Configurazione avanzata"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Effettua il backup adesso"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11596,7 +11724,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11609,7 +11737,7 @@ msgstr ""
"un'errata configurazione di postfix. Per risolvere il problema\n"
"dovete indicare ilmionomehost o ilmiodominio in /etc/postfix/main.cf\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11650,7 +11778,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11678,18 +11806,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
"Copyright(C)2001MandrakeSoftbyDUPONTSebastien<dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11706,7 +11834,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11746,7 +11874,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11757,7 +11885,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11770,7 +11898,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11852,8 +11980,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Programmi da linea di comando"
@@ -11920,26 +12048,26 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Report"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Non installato"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Dopo 'installazione degli screenshot saranno disponibili in %s"
@@ -12041,10 +12169,6 @@ msgstr "Assistente..."
msgid "Apply"
msgstr "Applica"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Per favore attendi... sto applicando la configurazione"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Connesso"
@@ -12166,7 +12290,7 @@ msgstr "Nome modulo"
msgid "Size"
msgstr "Dimensione"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12231,12 +12355,12 @@ msgstr "Output"
msgid "Build the disk"
msgstr "Crea il disco"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Assicurati che un supporto sia inserito nel dispositivo %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12245,12 +12369,12 @@ msgstr ""
"Il dispositivo %s vuoto o il supporto protetto in scrittura.\n"
"Per favore inserisci un supporto."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Impssibile eseguire la chiamata fork: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12705,8 +12829,8 @@ msgid ""
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
"Ogni cosa stata configurata.\n"
-"Ora puoi condividere la connessione ad Internet con altri computers sulla tua "
-"rete locale (LAN) usando la configurazione di rete automatica (DHCP)."
+"Ora puoi condividere la connessione ad Internet con altri computers sulla "
+"tua rete locale (LAN) usando la configurazione di rete automatica (DHCP)."
#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
@@ -12740,158 +12864,158 @@ msgstr ""
"\n"
"Cliccate su ``Configura'' se volete lanciare il Wizard di configurazione."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Gruppo di lavoro"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partizione %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Utente"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Cancella"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Fatto"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Aggiungi un modulo"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Aggiungi nuova stampante"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Deseleziona tutto"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Rimuovi quelli selezionati"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Accetta utente"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versione: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Porta"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Usa il riconoscimento automatico"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Usa il riconoscimento automatico"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Salva scelta pacchetti"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Utente"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Gruppo di lavoro"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nessuna NIC selezionata!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12903,137 +13027,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "creazione disco di avvio"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Risoluzione"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Scegli un file"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Nome di condivisione"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Configurazione post installazione"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Esci"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Installa sistema"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Configura servizi"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "dispositivo"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "dispositivo"
+msgid "Save theme"
+msgstr "Installa sistema"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Scegli un monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Scelta del modello della stampante"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Dovete scegliere/indicare una stampante/un dispositivo!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Riconoscimento periferiche ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13167,6 +13301,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "uso: keyboarddrake [--expert] [tastiera]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uso: keyboarddrake [--expert] [tastiera]\n"
@@ -13196,13 +13337,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Non riesco ad avviare l'aggiornamento diretto !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"Il cambiamento stato applicato, ma perch diventi effettivo dovete uscire "
"dalla sessione"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13485,17 +13626,14 @@ msgstr ""
"Adesso potete utilizzarlo usando \"XSane\" (sezione Multimedia/Graphics del "
"menu di sistema)."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
"Alcuni dispositivi della categoria hardware \"%s\" sono stati rimossi:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13570,7 +13708,7 @@ msgstr "Installa aggiornamenti di sistema"
msgid "Exit install"
msgstr "Termina installazione"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13817,3 +13955,18 @@ msgstr "Multimedia - Masterizzazione CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Workstation scientifica"
+
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Configurazione post installazione"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Il proxy dovrebbe essere ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Esci"
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index ca6f74585..67b537db0 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-07-05 15:44+0200\n"
"Last-Translator: YAMAGATA Hiroo <hiyori13@alum.mit.edu>\n"
"Language-Team: Japanese <ja@li.org>\n"
@@ -89,24 +89,24 @@ msgstr "إåɤ򤽤줾Ω"
msgid "Use Xinerama extension"
msgstr "Xinerama ĥȤ"
-#: ../../Xconfig/card.pm_.c:386
-#, fuzzy, c-format
+#: ../../Xconfig/card.pm_.c:387
+#, c-format
msgid "Configure only card \"%s\"%s"
-msgstr "ʲΥɤꡧ %s(%s)"
+msgstr "ʲΥɤꡧ\"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "ϡɥ3D졼ĤXFree %s"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -115,17 +115,17 @@ msgstr ""
"ΥɤXFree %s ǤΤ3D졼ǽǤ\n"
"XFree %s ǤΤΥɤΥݡȤϡ2D ΤۤƤޤ"
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "ΥɤXFree %s 3D졼ǽǤ"
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "¸ʳΥϡɥ3D졼ĤXFree %s"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
"ޤǡ¸ŪʥݡȤǡޥե꡼βǽޤ\n"
"XFree %s ǤΤΥɤΥݡȤϡ2D ΤۤƤޤ"
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,17 +145,16 @@ msgstr ""
"ΥɤXFree %s 3D졼ǽǤ\n"
"ޤǡ¸ŪʥݡȤǡޥե꡼βǽޤ"
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (󥹥ȡǥץ쥤ɥ饤)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr ""
#: ../../Xconfig/main.pm_.c:102
-#, fuzzy
msgid "Graphic Card"
msgstr "եå"
@@ -169,34 +168,34 @@ msgstr ""
#: ../../Xconfig/main.pm_.c:113
msgid "Test"
-msgstr ""
+msgstr "ƥ"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "ץ"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "λ"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -215,20 +214,19 @@ msgstr "˥Dz"
#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
-msgstr ""
+msgstr "ץ饰ץ쥤"
#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr ""
#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
-#, fuzzy
msgid "Vendor"
-msgstr "Ȥ᤹"
+msgstr "٥"
#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+msgstr "ץ饰ץ쥤Υץּԡưǥ˥Ǥ"
#: ../../Xconfig/monitor.pm_.c:114
msgid ""
@@ -292,25 +290,25 @@ msgstr "٤ȿ"
msgid "Graphics card: %s"
msgstr "եå: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "󥻥"
@@ -323,7 +321,6 @@ msgid "Do you want to test the configuration?"
msgstr "ǻƤߤޤ"
#: ../../Xconfig/test.pm_.c:31
-#, fuzzy
msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
"ٹ𡧤ΥեåɤƥȤȥޥ󤬥ե꡼뤫⤷ޤ"
@@ -388,11 +385,11 @@ msgstr "XFree86 : %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ɥ饤: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X εư"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -401,7 +398,7 @@ msgstr ""
"ԥ塼֡ȤưŪ X Ω夬ˤǤޤ\n"
"֡Ȥ X Ω夲ޤ"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,11 +409,18 @@ msgid ""
"\n"
"Do you have this feature?"
msgstr ""
+"ʤΥӥǥɤϡTV-OUT ͥĤƤ褦Ǥ\n"
+"ե졼ХåեȤäư褦Ǥޤ衣\n"
+"\n"
+"ˤϡԥ塼ư˥ӥǥɤƥӤˤĤʤǤ"
+"\n"
+"줫֡ȥ \"TVout\" Ǥ\n"
+"\n"
+"εǽޤ"
-#: ../../Xconfig/various.pm_.c:84
-#, fuzzy
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
-msgstr "ɤμISDN³Ǥ"
+msgstr "ƥӤβϲǤ"
#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
@@ -486,7 +490,7 @@ msgstr "ѥ"
msgid "compact"
msgstr "ѥ"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "ӥǥ⡼"
@@ -494,17 +498,17 @@ msgstr "ӥǥ⡼"
msgid "Delay before booting default image"
msgstr "ǥեȥ᡼ưԤ"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "ѥ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "ѥ (⤦)"
@@ -544,14 +548,14 @@ msgstr ""
"ȥޥɥ饤󥪥ץ¡ɥץϥѥɤʤ\n"
"ˤޤ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "⤦ٻƲ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "ѥɤפޤ"
@@ -587,8 +591,13 @@ msgid ""
"\n"
"On which drive are you booting?"
msgstr ""
+"֡ȥѡƥ˥󥹥ȡ뤹뤳Ȥˤޤ͡\n"
+"ϵưϡɥǥˤǤ˥֡ȥʥƥॳޥʤɤ"
+"̣򤷤ޤ\n"
+"\n"
+"ɤΥɥ饤֤鵯ưޤ"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -596,149 +605,149 @@ msgstr ""
"ȥϰʲΤȤǤ\n"
"ɲáѹǤޤ"
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ɲ"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "λ"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "ѹ"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "ɤΥפɲäޤ"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "¾ OS (SunOSʤ...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "¾ OS (MacOSʤ...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "¾ OS (ɥʤ...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "᡼"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "롼"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "ɲ"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "ɤ߽"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "ơ֥"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr ""
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "٥"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "ǥե"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "ӥǥʤ"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "ȥä"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Υ٥ϵƤޤ"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "ͥ륤᡼ꤷƤ"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "rootѡƥɬꤷƤ"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Υ٥ϤǤ˻ȤƤޤ"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s 󥿡եĤޤ"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "̤ΤΤϤޤ"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "%s 󥿡եϤޤ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr ""
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ϥ"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "ϡɥξ򸫤Ʋ"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s %s Υɥ饤Х󥹥ȡ"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(⥸塼 %s)"
-#: ../../any.pm_.c:689
-#, fuzzy, c-format
+#: ../../any.pm_.c:690
+#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
@@ -746,7 +755,7 @@ msgstr ""
"Ǥϥ⥸塼 %s ΥץꤷƤ\n"
"ʤɥ쥹Ϥ٤ơƬ 0x ĤϤ뤳ȡ㡧 '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -757,17 +766,17 @@ msgstr ""
"ץΥեޥåȤϡ̾= ̾2=2 ...ɤǤ\n"
": io=0x300 irq=7"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "⥸塼Υץ"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "ɤ %s ɥ饤Фޤ礦"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -784,15 +793,15 @@ msgstr ""
"Ƥߤޤץ˥ԥ塼ߤ뤫Τޤ󤬡\n"
"ޥ󤬤줿ꤹ뤳ȤϤޤ"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "ȥץ"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "ץ"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -801,64 +810,61 @@ msgstr ""
"⥸塼 %s ΥɤǤޤǤ\n"
"ѥ᡼ѤƤʤƤߤޤ"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "X ץؤΥ"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "rpm ġؤΥ"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "suɤ"
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "եؤΥ"
-#: ../../any.pm_.c:754
-#, fuzzy
+#: ../../any.pm_.c:755
msgid "access to network tools"
-msgstr "rpm ġؤΥ"
+msgstr "ͥåȥġؤΥ"
-#: ../../any.pm_.c:755
-#, fuzzy
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
-msgstr "rpm ġؤΥ"
+msgstr "ѥġؤΥ"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s ɲúѤ)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "ѥɤñޤ"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "桼̾ͿƲ"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "桼̾ˤϱѾʸ-פ_פȤޤ"
-#: ../../any.pm_.c:768
-#, fuzzy
+#: ../../any.pm_.c:769
msgid "The user name is too long"
-msgstr "Υ桼̾ϤǤ¸ߤޤ"
+msgstr "Υ桼̾Ĺޤ"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Υ桼̾ϤǤ¸ߤޤ"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "桼ɲ"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -867,32 +873,32 @@ msgstr ""
"桼̾ϤƲ\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "դ桼"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "ºݤλ̾"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "桼̾"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr ""
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "ư"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -900,54 +906,54 @@ msgstr ""
"ưŪ桼󤹤褦˥ԥ塼Ǥޤ\n"
"εǽȤޤ"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "ǥեȥ桼:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Ȥɥޥ͡Dz"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "ɤθȤǤ͡"
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "󥹥ȡѲǽˤʤۤθǤޤ"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr ""
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "٤ƤΥ桼ǧ"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "ե붦ͭʤ"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "ѥå %s ɬפǤ󥹥ȡ뤷ޤ"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "ݡȤˤ NFS Samba Ȥޤɤˤޤ"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "ɬץѥå %s ޤ"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -955,12 +961,17 @@ msgid ""
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
+"桼ƱΤǥ쥯ȥΰͭǤ褦ˤޤ?\n"
+"ȡ桼konquerornautilusǡֶͭפ򥯥åǤ"
+"ޤ\n"
+"\n"
+"֥פϥ桼Ȥ˺٤꤬Ǥޤ\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "userdrake ư"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -968,31 +979,31 @@ msgstr ""
"桼ζͭϡfileshareɥ롼פȤޤ\n"
"Υ롼פ˥桼ɲäˤϡuserdrake Ȥޤ衣"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "ʥåͤ⿯ۤ"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "㤤"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "ɸ"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "⤤"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "äȹ⤤"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "мʤۤɹ"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1002,7 +1013,7 @@ msgstr ""
"ˤǤ⥢ǤƤޤޤ¾Υޥ䥤󥿡ͥå\n"
"ˤĤʤäޥǤϻȤʤǤѥ¤⤢ޤ"
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1010,7 +1021,7 @@ msgstr ""
"ѥɤͭˤʤޤͥåȥˤĤʤΤϤޤ\n"
"Ǥޤ"
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1018,13 +1029,13 @@ msgstr ""
"ɸΥƥǡ饤ȤȤƥ󥿡ͥå³ޥ"
"ο侩٥Ǥ"
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr "Ǥ¤äƤơռưåäȤޤ"
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1038,7 +1049,7 @@ msgstr ""
"ˤʤäƤޤ𡧤ʤΥޥ󤬥󥿡ͥåȾΥ饤Ѥ"
"顢ä㤤٥ۤǤ衣"
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1046,47 +1057,47 @@ msgstr ""
"Υ٥˴ŤƤޤǥƥϴˤȤ\n"
"ˤʤäƤޤƥϺǤ"
-#: ../../any.pm_.c:1094
-#, fuzzy
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
-msgstr "ץ"
+msgstr "DrakSecܥץ"
-#: ../../any.pm_.c:1095
-#, fuzzy
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "ƥοǤ"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "ƥ"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "ФlibsafeȤ"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"ХåեСեեޥåȥȥ󥰹ɸ椹饤֥ꡣ"
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
-msgstr ""
+msgstr "ƥԡʥŻҥ᡼"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
+"ǤϡƼΥܡ֡㡧ƥƥˤ\n"
+"ڤؤ륭Ȥ߹碌٤ޤ"
# NOTE: this message will be displayed by SILO at boot time; that is
# only the ascii charset will be available
# so use only 7bit for this message
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1110,58 +1121,58 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "GRUB operating system chooser-he youkosou!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "%c, %c key wo tukatte entry wo shitei shite kudasai."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Kono OS wo kidou suru nara Enter, Kidou mae no jikkou command"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "no henshuu niha 'e', command line nara 'c' wo oshi masu."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Sentaku shita OS ga %d byou de jidoutekini kidou shimasu."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "/boot ­Ǥ"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "ǥȥå"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "ȥ˥塼"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "֡ȥ %s ѡƥˤϥ󥹥ȡǤޤ\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "إפϤޤƤޤ\n"
@@ -1213,106 +1224,106 @@ msgstr "Lilo/grub ⡼"
msgid "Yaboot mode"
msgstr "Yaboot ⡼"
-#: ../../bootlook.pm_.c:148
-#, fuzzy
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
-msgstr "ƥƳ"
+msgstr "ơޤƳ"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
-msgstr ""
+msgstr "󥽡ǥơޤɽ"
-#: ../../bootlook.pm_.c:150
-#, fuzzy
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
-msgstr "ѡƥ"
+msgstr "ơޤ"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
-msgstr ""
+msgstr "%s %s.old ˥Хåå"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "顼"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
-msgstr ""
+msgstr "liloåХååפǤޤ"
-#: ../../bootlook.pm_.c:196
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:195
+#, c-format
msgid "Copy %s to %s"
-msgstr "%s ԡ"
+msgstr "%s %s˥ԡ"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
-msgstr ""
+msgstr "liloåѹǤޤ"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
-msgstr ""
+msgstr "liloåĤޤ"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
+msgstr "/etc/sysconfig/bootsplash񤱤ޤ"
-#: ../../bootlook.pm_.c:230
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:229
+#, c-format
msgid "Write %s"
-msgstr "XFree %s"
+msgstr "%s񤭹"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
+"/etc/sysconfig/bootsplash񤭹ޤ\n"
+"ե뤬Ĥޤ"
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr ""
+msgstr "mkinitrd -f /boot/initrd-%s.img %sưǤޤ"
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-msgstr ""
+msgstr "mkinitrd -f /boot/initrd-%s.img %sinitrdˤ"
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
+"LiLoƼ¹ԤǤޤ\n"
+"LiloơޤΥ󥹥ȡλˤrootˤʤäơliloפ¹Ԥޤ"
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
-msgstr ""
+msgstr "liloƼ¹Ԥޤ"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
-msgstr "ӥǥʤ"
+msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
-msgstr ""
+msgstr "LiloȵưץåơޤΥ󥹥ȡ"
-#: ../../bootlook.pm_.c:259
-#, fuzzy
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
-msgstr "Ƴ饹"
+msgstr "ơޤΥ󥹥ȡ뼺ԡ"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1321,22 +1332,21 @@ msgstr ""
"ޡ֡ȥޥ͡ˤ %s 򤪻ȤǤ\n"
"ꥦɤưˤϡפ򥯥åޤ礦"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr ""
-#: ../../bootlook.pm_.c:277
-#, fuzzy
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
-msgstr "ѥå¸"
+msgstr "ץå"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
-msgstr ""
+msgstr "ơ"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1344,45 +1354,49 @@ msgid ""
"you can choose\n"
"them separatly"
msgstr ""
+"\n"
+"liloȵưץå\n"
+"ơޤӤޤ礦\n"
+"ξԤ̡٤ޤ"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
-msgstr ""
+msgstr "lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
-msgstr ""
+msgstr "ưץå"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "ƥ⡼"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "ư X ɥ¹"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "ưϤʤ"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr " (桼ǥȥåסˤǼư󤹤"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab ɤߤȤѤ˳ޤ: %s"
@@ -1479,53 +1493,58 @@ msgstr "ȥꥢ"
msgid "United States"
msgstr "ꥫ罰"
-#: ../../diskdrake/dav.pm_.c:23
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "ޥ"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "ޥ"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "ޥȥݥ"
-#: ../../diskdrake/dav.pm_.c:81
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
-msgstr "CD饤®٤ϤƤ"
+msgstr "WavDAVФURLϤƤ"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
-msgstr ""
+msgstr "URL http:// https://ǻϤޤ뤳ȡ"
-#: ../../diskdrake/dav.pm_.c:105
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
-msgstr ""
+msgstr ": "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "ޥȥݥ: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "ץ: %s"
@@ -1579,11 +1598,8 @@ msgid "Details"
msgstr "ܺ"
#: ../../diskdrake/hd_gtk.pm_.c:252
-#, fuzzy
msgid "No hard drives found"
-msgstr ""
-"ץ󥿤Ĥޤ\n"
-"\n"
+msgstr "ϡɥɥ饤֤Ĥޤ"
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
@@ -1615,7 +1631,7 @@ msgstr ""
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "¾"
@@ -1759,7 +1775,7 @@ msgstr ""
"Хååפѡƥơ֥Υ㤤ޤ\n"
"³ޤ"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "ٹ"
@@ -1841,6 +1857,9 @@ msgid ""
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"ѡƥ󤬺ޤ\n"
+"(ܥѡƥο¤ãƤ뤿)\n"
+"ɤ줫ܥѡƥĥѡƥޤ礦"
#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
@@ -1878,9 +1897,9 @@ msgstr ""
"ޤ롼ץХåƤ"
#: ../../diskdrake/interactive.pm_.c:594
-#, fuzzy, c-format
+#, c-format
msgid "Where do you want to mount %s?"
-msgstr "ǥХ %s ɤ˥ޥȤޤ"
+msgstr "%s ɤ˥ޥȤޤ"
#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
@@ -2001,7 +2020,7 @@ msgid "What type of partitioning?"
msgstr "ɤʥѡƥǤ"
#: ../../diskdrake/interactive.pm_.c:965
-#, fuzzy, c-format
+#, c-format
msgid "The package %s is needed. Install it?"
msgstr "ѥå %s ɬפǤ󥹥ȡ뤷ޤ"
@@ -2223,7 +2242,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm_.c:1150
msgid "Read-only"
-msgstr ""
+msgstr "ɤߤȤ"
#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
@@ -2250,9 +2269,9 @@ msgid "Partition table type: %s\n"
msgstr "ѡƥơ֥륿: %s\n"
#: ../../diskdrake/interactive.pm_.c:1156
-#, fuzzy, c-format
+#, c-format
msgid "on channel %d id %d\n"
-msgstr "Х %d id %d\n"
+msgstr "ͥ %d id %d\n"
#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
@@ -2290,59 +2309,55 @@ msgstr "ǥ򥯥åƤ"
#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
msgid "Can't login using username %s (bad password?)"
-msgstr ""
+msgstr "桼̾ %s ǥǤޤʥѥɤΤޤ"
#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
-#, fuzzy
msgid "Domain Authentication Required"
-msgstr "ǧ"
+msgstr "ɥᥤǧڤɬפǤ"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Another one"
-msgstr "󥿡ͥå"
+msgstr "⤦"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Which username"
-msgstr "桼̾"
+msgstr "ɤΥ桼̾"
#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
+"ΥۥȤΥˤϥ桼̾ѥɡɥᥤ̾ϤƤ"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
-#, fuzzy
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "桼̾"
#: ../../diskdrake/smbnfs_gtk.pm_.c:180
-#, fuzzy
msgid "Domain"
-msgstr "NIS ɥᥤ"
+msgstr "ɥᥤ"
#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Ф򸡺"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s եޥå, %s "
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s %s ǥեޥåȤˡΤޤ"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "ѡƥ %s ǥ쥯ȥ %s ˥ޥȤǤޤǤ"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s 򥢥ޥ˥顼: %s"
@@ -2404,12 +2419,11 @@ msgid "This directory should remain within the root filesystem"
msgstr "Υǥ쥯ȥ root ե륷ƥ˻ĤƤ"
#: ../../fsedit.pm_.c:530
-#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-"ΥޥȥݥȤˤϡºߤե륷ƥ (ext2, reiserfs) \n"
+"ΥޥȥݥȤˤϡºߤե륷ƥ (ext2, reiserfs, xfs, jfs)"
"ɬפǤ\n"
#: ../../fsedit.pm_.c:532
@@ -2430,48 +2444,108 @@ msgstr "뤳Ȥޤ"
msgid "Error opening %s for writing: %s"
msgstr "񤭹ߤΤ %s 򳫤Ȥ顼ȯ: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
-msgstr ""
+msgstr "Υɥ饤Фޤ"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
+msgstr "Υɥ (%s) ѤδΤOSS/ALSAإɥ饤Фޤ"
-#: ../../harddrake/sound.pm_.c:158
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
-msgstr "CUPS "
+msgstr ""
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
+"Ǥϥɥ (%s) Ѥإɥ饤СOSSALSA) Ǥޤ"
-#: ../../harddrake/sound.pm_.c:162
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
-msgstr "ɥ饤"
+msgstr "ɥ饤С"
+
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "إ"
-#: ../../harddrake/sound.pm_.c:173
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "ԤġŬѤƤޤ"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Ԥ"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
-msgstr "X ɥ饤"
+msgstr "ΤΥɥ饤Фʤ"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
-msgstr ""
+msgstr "Υɥ (%s) ѤδΤΥɥ饤ФϤޤ"
-#: ../../harddrake/sound.pm_.c:177
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
-msgstr "̤ΤΥǥ"
+msgstr "̤ΤΥɥ饤"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2480,34 +2554,36 @@ msgid ""
"<install at mandrakesoft dot com>\n"
"with subject: unlisted sound driver \"%s\""
msgstr ""
+"ΥɥѤΡ%sץɥ饤Фϰˤޤ\n"
+"\n"
+"\"lspcidrake -v\" ޥɤνϤ\n"
+"<install at mandrakesoft dot com>\n"
+"ˡsubject: unlisted sound driver \"%s\"ǥ᡼뤷Ƥ"
#: ../../harddrake/ui.pm_.c:16
-#, fuzzy
msgid "Model"
-msgstr "⥸塼"
+msgstr "ǥ"
#: ../../harddrake/ui.pm_.c:16
-#, fuzzy
msgid "hard disk model"
-msgstr " mem (DMA)"
+msgstr "ϡɥǥΥǥ"
#: ../../harddrake/ui.pm_.c:17
-#, fuzzy
msgid "Channel"
-msgstr "󥻥"
+msgstr "ͥ"
#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
-msgstr ""
+msgstr "EIDE/SCSI ͥ"
#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
-msgstr ""
+msgstr "Х"
#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
+msgstr "ǥХ³줿ʪХӤޤPCIUSBʤ)"
#: ../../harddrake/ui.pm_.c:21
msgid "Module"
@@ -2515,38 +2591,39 @@ msgstr "⥸塼"
#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
-msgstr ""
+msgstr "ΥǥХ򰷤GNU/LinuxͥΥ⥸塼"
#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
-msgstr ""
+msgstr "ǥ饹"
#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
-msgstr ""
+msgstr "ϡɥǥХΥ饹"
#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
-msgstr "ץ󥿤"
+msgstr ""
#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
-msgstr ""
+msgstr "ΥեɤϥǥХǤ"
#: ../../harddrake/ui.pm_.c:25
-#, fuzzy
msgid "Bus identification"
-msgstr "ǧ"
+msgstr "ХƱ"
#: ../../harddrake/ui.pm_.c:26
msgid ""
"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
"PCI/USB ids"
msgstr ""
+"- PCI USB ǥХ٥ǥХ֥٥֥ǥХPCI/"
+"USB id򵭽Ҥޤ"
#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
-msgstr ""
+msgstr "Хΰ"
#: ../../harddrake/ui.pm_.c:29
msgid ""
@@ -2554,160 +2631,153 @@ msgid ""
"- eide devices: the device is either a slave or a master device\n"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
+"- pci ǥХ: ΥɤPCIåȡǥХȵǽ\n"
+"- eide ǥХ: 졼֤ޥΥǥХ\n"
+"- scsi ǥХ: scsi Хscsi ǥХid"
#: ../../harddrake/ui.pm_.c:32
-#, fuzzy
msgid "Old device file"
-msgstr "ե"
+msgstr "ŤǥХե"
#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
-msgstr ""
+msgstr "devѥåǻȤ줿ŤŪǥХ̾"
#: ../../harddrake/ui.pm_.c:34
-#, fuzzy
msgid "New devfs device"
-msgstr "ȥǥХ"
+msgstr "devfsǥХ"
#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
-msgstr ""
+msgstr "incoreͥdevfsưŪǥХ̾"
#: ../../harddrake/ui.pm_.c:36
-#, fuzzy
msgid "Number of buttons"
-msgstr "2ܥ"
+msgstr "ܥ"
#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
-msgstr ""
+msgstr "ǥХΥ٥̾"
#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
msgid "Alternative drivers"
-msgstr "̤Υƥȥڡ (A4)"
+msgstr "إɥ饤"
#: ../../harddrake/ui.pm_.c:39
msgid "the list of alternative drivers for this sound card"
-msgstr ""
+msgstr "Υɥإɥ饤а"
#: ../../harddrake/ui.pm_.c:63
-#, fuzzy
msgid "/_Quit"
-msgstr "λ"
+msgstr "/λ(_Q)"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/إ(_H)"
#: ../../harddrake/ui.pm_.c:65
-#, fuzzy
msgid "/_Help..."
-msgstr "/إ(_H)"
+msgstr "/إ(_H)..."
#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
-msgstr ""
+msgstr "Harddrake إ"
#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
+"եɤ:\n"
+"\n"
#: ../../harddrake/ui.pm_.c:71
-#, fuzzy
+msgid "/_Report Bug"
+msgstr "/Х(_R)"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
-msgstr "/إ(H)/(_A)..."
+msgstr "/(_A)..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
-msgstr ""
+msgstr "HarddrakeˤĤ"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
+"ΥեȤHardDrake, Mandrake Υϡɥġʤꡣ\n"
+"С:"
-#: ../../harddrake/ui.pm_.c:74
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
-msgstr "ȥץ"
+msgstr ": "
-#: ../../harddrake/ui.pm_.c:84
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
-msgstr "ǥθ"
+msgstr "Harddrake2 С"
-#: ../../harddrake/ui.pm_.c:99
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
-msgstr "ϡɥξ򸫤Ʋ"
+msgstr "Ф줿ϡɥ"
-#: ../../harddrake/ui.pm_.c:101
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
-msgstr "ɽ"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:104
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
-msgstr "ޥ"
+msgstr "⥸塼"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
-msgstr ""
+msgstr "ġ¹"
-#: ../../harddrake/ui.pm_.c:109
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
-msgstr "ݡ %s ǸФޤ"
+msgstr "޸"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Ԥ"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
-msgstr ""
+msgstr "⥸塼γƥѥ᡼򤳤Ǥޤ"
-#: ../../harddrake/ui.pm_.c:161
-#, fuzzy, c-format
+#: ../../harddrake/ui.pm_.c:166
+#, c-format
msgid "Running \"%s\" ..."
-msgstr "ץ \"%s\" ..."
+msgstr "\"%s\" ¹..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr ""
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "%s饹ץ\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
-msgstr ""
+msgstr "켡"
-#: ../../harddrake/ui.pm_.c:198
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
-msgstr " %d "
+msgstr ""
#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
-#, fuzzy
msgid "Auto-detect"
-msgstr "ưФ򤹤"
+msgstr "ư"
#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
-#, fuzzy
msgid "Unknown|Generic"
-msgstr ""
+msgstr "̤|"
#: ../../harddrake/v4l.pm_.c:98
msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
+msgstr "̤|CPH05X (bt878) [Ƽ٥]"
#: ../../harddrake/v4l.pm_.c:99
msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
+msgstr "̤|CPH06X (bt878) [Ƽ٥]"
#: ../../harddrake/v4l.pm_.c:210
msgid ""
@@ -2716,37 +2786,38 @@ msgid ""
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed"
msgstr ""
+"ǶΥƥӥɤΤۤȤɤǤGNU/Linux ͥbttv⥸塼뤬"
+"᡼ưФޤ\n"
+"ɤФʤСưǻǤޤɬפ˱ƥƥӥ"
+"Υѥ᡼Ǥ"
#: ../../harddrake/v4l.pm_.c:213
-#, fuzzy
msgid "Card model:"
-msgstr " mem (DMA)"
+msgstr "ɥǥ: "
#: ../../harddrake/v4l.pm_.c:214
-#, fuzzy
msgid "Tuner type:"
-msgstr "פѹ"
+msgstr "塼ʤμ: "
#: ../../harddrake/v4l.pm_.c:215
msgid "Number of capture buffers:"
-msgstr ""
+msgstr "ץХåեο: "
#: ../../harddrake/v4l.pm_.c:215
msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
+msgstr "mmapץѤΥץХåե"
#: ../../harddrake/v4l.pm_.c:217
-#, fuzzy
msgid "PLL setting:"
-msgstr "ɤ߹"
+msgstr "PLL :"
#: ../../harddrake/v4l.pm_.c:218
msgid "Radio support:"
-msgstr ""
+msgstr "饸ݡ: "
#: ../../harddrake/v4l.pm_.c:218
msgid "enable radio support"
-msgstr ""
+msgstr "饸ݡȤͭˤ"
#: ../../help.pm_.c:13
msgid ""
@@ -3204,7 +3275,6 @@ msgstr ""
"ޤ礦"
#: ../../help.pm_.c:246
-#, fuzzy
msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
@@ -3247,7 +3317,7 @@ msgstr ""
"ʤɤˤ륯å夫饷ƥΤ˻Ȥ롢ƼΥġ\n"
"äƤޤ\n"
"\n"
-"Υƥåפ򥯥åȡեåԡǥɥ饤֤\n"
+"֤Ϥפȱ顢եåԡǥɥ饤֤\n"
"׵ᤵޤեåԡǥϡפʥǡ\n"
"äƤʤΤˤޤ礦եޥåȤɬפϤޤ\n"
"DrakXˤ񤭴ޤ"
@@ -4477,13 +4547,16 @@ msgid ""
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""
+"ʤΥͥбͥ⥸塼˥Ǥޤ(ե%s"
+"ޤ)̡ưեåԡ󥹥ȡǥбƤʤ"
+"ȤȤǤʿưեåԡʤޤ礦)"
#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "%s եޥåȤƤ"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4507,7 +4580,7 @@ msgstr ""
"\n"
"ˤΥФ򥤥󥹥ȡ뤷ƤǤ͡\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4515,21 +4588,25 @@ msgid ""
"\n"
"Do you really want to remove these packages?\n"
msgstr ""
+"ƥ๹ǽˤ뤿ᡢʲΥѥåޤ: %s\n"
+"\n"
+"\n"
+"ˤƤǤ?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS ɥᥤ󤬤ʤΤǥ֥ɥ㥹ȤȤޤ"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "FATΥեåԡɥ饤 %s "
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Υեåԡ FATեޥåȤ㤢ޤ"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4537,12 +4614,12 @@ msgstr ""
"¸ѥåȤˤϡ󥹥ȡεưˡlinux "
"defcfg=floppyפȻꤷޤ"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "ե %s ɤߤȤꥨ顼Ǥ"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4785,7 +4862,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "%s ؤ褦"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "ͭʥեåԡɥ饤֤ޤ"
@@ -4816,11 +4893,11 @@ msgstr "󥹥ȡ륯饹"
msgid "Please choose one of the following classes of installation:"
msgstr "ʲΥ󥹥ȡ륯饹ɤ줫Ǥ"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "ѥå롼פ"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "̥ѥå"
@@ -4896,7 +4973,7 @@ msgstr "ư򤵤줿ѥåɽ"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "󥹥ȡ"
@@ -4916,7 +4993,7 @@ msgstr "Ǿ󥹥ȡ"
msgid "Choose the packages you want to install"
msgstr "󥹥ȡ뤷ѥåDz"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "󥹥ȡ"
@@ -4943,17 +5020,17 @@ msgid "Installing package %s"
msgstr "ѥå %s Υ󥹥ȡ"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "ǧ"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4967,16 +5044,16 @@ msgstr ""
"CDʤСCancel 򲡤Ƥ Cd-Rom Υ󥹥ȡ򤷤Ʋ"
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "ޤ鷺˿ʤߤޤ"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "ѥåǥ顼ȯ:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "ѥåΥ󥹥ȡǥ顼ȯ:"
@@ -5100,7 +5177,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5211,7 +5288,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5285,10 +5362,10 @@ msgstr ""
#: ../../install_steps_interactive.pm_.c:191
msgid "Are you sure you refuse the licence?"
-msgstr ""
+msgstr "饤󥹤˵ݤƤǤ"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "ܡ"
@@ -5432,24 +5509,24 @@ msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
+"ե륷ƥ %s Υå˼ԡ顼ޤʤǡ"
+"ä뤫⤷ޤ)"
#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "󥹥ȡ˽ʬʥåפޤ󡤥åפäƲ"
#: ../../install_steps_interactive.pm_.c:472
-#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Υѥå򤵤Ƥޤ"
+msgstr "Υѥåõrpmǡ١ƹ..."
#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "Υѥå򤵤Ƥޤ"
#: ../../install_steps_interactive.pm_.c:476
-#, fuzzy
msgid "Looking at packages already installed..."
-msgstr "ΥѥåˤǤޤ󡣤Ǥ˥󥹥ȡѤߤǤ"
+msgstr "󥹥ȡѤߥѥåĴ٤Ƥޤ..."
#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
@@ -5495,32 +5572,31 @@ msgstr "ѥåäեåԡ"
msgid "Selected size is larger than available space"
msgstr "ΤΥ϶ڡۤƤޤ"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "󥹥ȡμ"
-#: ../../install_steps_interactive.pm_.c:642
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
"ѥå롼פФƤޤ\n"
-"ߤ󥹥ȡǤ"
+"ߤ󥹥ȡǤ: "
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "X Ȥ"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Ūʥɥơʿ侩"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "˺¤Υ󥹥ȡurpmi ʤ"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5530,16 +5606,16 @@ msgstr ""
"CDĤʤС󥻥򥯥åƤ\n"
"긵ˤʤCDС򤫤ϤƤOk򥯥åޤ"
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr " %s פȤCd-Rom"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "󥹥ȡν"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5548,21 +5624,21 @@ msgstr ""
"ѥå %s 򥤥󥹥ȡ\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "󥹥ȡ"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ȥäưեåԡɥ饤 %s "
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "⥸塼եåԡɥ饤 %s Ʋ"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5626,8 +5702,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5639,165 +5714,162 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
"ǥȥӥ塼ʹߤ˹줿ѥå\n"
-"ɤǤޤ\n"
-"\n"
-"ƥեåХեåޤ\n"
-"ˤϥ󥿡ͥå³ɬפǤ\n"
+"ɤǤޤƥեåХեåޤ\n"
+"ѥåΥɤˤϥ󥿡ͥå³ɬפǤ\n"
"\n"
"ѥå򥤥󥹥ȡ뤷ޤ"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Mandrake Linux Ȥ³ƥߥ顼Ƥޤ"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "ɤΥȤѥåäƤ뤫"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ȥ³ƥѥåƤޤ"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "ʤλӤϤɤǤ"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "ϡɥå GMT ˥åȤƤޤ"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "ư֤碌NTPȤ"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP "
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "⡼CUPS "
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "ץ󥿤ʤ"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "ISA ɥɤϤޤ"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"󥹥ȡˡsndconfigפ¹ԤƥɥɤꤷƤ"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"ɥɤФǤޤǤ\n"
"󥹥ȡˡharddrakeפƤ"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "ޤȤ"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "ޥ"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "ץ"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "ɥ"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "ƥӥ"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
-msgstr "ɥΥեȤäƤ"
+msgstr "ɥΥɥᥤ"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "ե"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "롼ȥѥ"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "ѥɤʤ"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "ΥѥɤϴñޤʺǤ %d ʸȤäƤ"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "ǧ"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "ǧLDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP١dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "ǧNIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS ɥᥤ"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5812,22 +5884,31 @@ msgid ""
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
+"W2K PDCǤȤˤϡ֤admin˰ʲ¹ԤƤ餦ɬפޤC:"
+"\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add "
+"ФƵưޤ\n"
+"ޤޥ򥦥ɥ(TM)ɥᥤ˻äˤϥɥᥤԤΥ桼̾/"
+"ѥɤɬפǤ\n"
+"ͥåȥͭˤʤäƤʤСDrakxϥͥåȥ꤬äƤ"
+"ᥤ˻ä褦Ȥޤ\n"
+"꤬餫ͳǼԤɥᥤǧڤǽʤСƥư"
+"Ƥ顢ɥ(TM)ΥɥᥤȴԤΥ桼̾/ѥɤȤ"
+"'smbpasswd -j DOMAIN -U USER%PASSWORD' ¹Ԥޤ\n"
+"'wbinfo -t' ޥɤĤȡǧѤ̩פåǤޤ"
-#: ../../install_steps_interactive.pm_.c:1122
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
-msgstr "ǧLDAP"
+msgstr "ɥɥᥤǧ"
-#: ../../install_steps_interactive.pm_.c:1124
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
-msgstr "ɥᥤ̾"
+msgstr "ɥᥤ̾"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
-msgstr ""
+msgstr "ɥᥤԥѥ"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5854,19 +5935,19 @@ msgstr ""
"֡ȥǥʤСեåԥǥɥ饤֤\n"
"OKפ򲡤Ƥ"
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "ǽΥեåԡɥ饤"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "ܤΥեåԡɥ饤"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "å"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5890,7 +5971,7 @@ msgstr ""
"줹Τڤˤʤޤ֡ȥǥޤ\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5904,28 +5985,28 @@ msgstr ""
"1.44 Mb եåԡǵưǥΤϤ̵֤Ǥ\n"
"XFS ϤȤƤ礭ʥɥ饤ФɬפǤ)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "ͭʥեåԡɥ饤֤ޤ󡤤ʤ"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "֡ȥǥꤿեåԥɥ饤֤"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "եåԡɥ饤 %s "
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "֡ȥǥκ"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "֡ȥν"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5937,11 +6018,11 @@ msgstr ""
"󥹥ȡ³ޤޥεưˤ\n"
"BootX ȤäƤ"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "aboot Ȥޤ"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5949,15 +6030,15 @@ msgstr ""
"aboot 󥹥ȡ˥顼ȯ\n"
"̵˥󥹥ȡ뤷ƤߤޤǽΥѡƥ˲ޤ"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "֡ȥ󥹥ȡ"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "֡ȥΥ󥹥ȡ˼ԤޤʲΥ顼ȯ:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5974,17 +6055,17 @@ msgstr ""
" 줫餳פޤ: shut-down\n"
"εưˤϥ֡ȥΥץץȤФϤǤ"
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Υեåԡɥ饤 %s Ʋ"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "󥹥ȡեåԡμư"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5994,8 +6075,8 @@ msgstr ""
"\n"
"˽λޤ"
-#: ../../install_steps_interactive.pm_.c:1316
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1317
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -6019,22 +6100,21 @@ msgstr ""
"ΥС Mandrake Linux ΥХϡ\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3 Ĵ٤ޤ\n"
+"%s Ĵ٤ޤ\n"
"\n"
"\n"
"󥹥ȡˤĤƤϥ桼ɤΡ֥󥹥ȡ뤷פ\n"
"Ϥ򻲾ȤƲ"
-#: ../../install_steps_interactive.pm_.c:1329
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "󥹥ȡեåԡμư"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6047,15 +6127,15 @@ msgstr ""
"(̤ΥޥؤΥ󥹥ȡѤΤΤǤ).\n"
"\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "ư"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "ѥå¸"
@@ -6090,14 +6170,14 @@ msgstr "٤"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- ɤ"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr ""
@@ -6135,7 +6215,7 @@ msgstr "Υܥ򥯥åޤ"
#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
-msgstr ""
+msgstr "̵ʥȥˤϡvoidפϤƤ"
#: ../../interactive/stdio.pm_.c:105
#, c-format
@@ -6243,9 +6323,8 @@ msgid "Belgian"
msgstr "٥륮"
#: ../../keyboard.pm_.c:177
-#, fuzzy
msgid "Bengali"
-msgstr "ͭ"
+msgstr "٥󥬥"
#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
@@ -6260,9 +6339,8 @@ msgid "Brazilian (ABNT-2)"
msgstr "֥饸"
#: ../../keyboard.pm_.c:183
-#, fuzzy
msgid "Bosnian"
-msgstr "ȥ˥"
+msgstr "ܥ˥"
#: ../../keyboard.pm_.c:184
msgid "Belarusian"
@@ -6286,7 +6364,7 @@ msgstr "ɥġʥǥåɥʤ"
#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "ǥʥ꡼"
#: ../../keyboard.pm_.c:192
msgid "Danish"
@@ -6322,11 +6400,11 @@ msgstr "ꥷ"
#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "顼"
#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "७"
#: ../../keyboard.pm_.c:205
msgid "Hungarian"
@@ -6358,7 +6436,7 @@ msgstr "ꥢ"
#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "̥ƥȥ"
#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
@@ -6373,9 +6451,8 @@ msgid "Latin American"
msgstr "ƥ󥢥ꥫ"
#: ../../keyboard.pm_.c:218
-#, fuzzy
msgid "Laotian"
-msgstr "ȥ"
+msgstr "饪"
#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
@@ -6403,20 +6480,19 @@ msgstr "ޥɥ˥"
#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "ߥޡʥӥޡ"
#: ../../keyboard.pm_.c:227
-#, fuzzy
msgid "Mongolian (cyrillic)"
-msgstr "ӥ(cyrillic)"
+msgstr "󥴥(cyrillic)"
#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "ޥ륿 (UK)"
#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "ޥ륿 (US)"
#: ../../keyboard.pm_.c:230
msgid "Dutch"
@@ -6547,33 +6623,31 @@ msgstr "֥ɥץ"
msgid "Circular mounts %s\n"
msgstr "ޥ %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "ޤܥ塼Ƥ\n"
#: ../../modparm.pm_.c:50
-#, fuzzy
msgid "a number"
-msgstr "ֹ"
+msgstr "ֹ"
#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
-msgstr ""
+msgstr "%d ޶ڤο"
#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
-msgstr ""
+msgstr "%d ޶ڤʸ"
#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
-msgstr ""
+msgstr "޶ڤο"
#: ../../modparm.pm_.c:54
-#, fuzzy
msgid "comma separated strings"
-msgstr "եޥå"
+msgstr "޶ڤʸ"
#: ../../modules.pm_.c:293
msgid ""
@@ -6611,9 +6685,8 @@ msgid "Genius NetScroll"
msgstr "Genius NetScroll"
#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
msgid "Microsoft Explorer"
-msgstr "ޥեȡƥޥPS/2"
+msgstr "ޥեȥץ"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
@@ -6687,20 +6760,19 @@ msgstr "ʤ"
msgid "No mouse"
msgstr "ޥʤ"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "ޥƥȤƤߤƤ"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "ޥͭˤˤϡ"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "ۥưƤ"
#: ../../my_gtk.pm_.c:64
-#, fuzzy
msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
msgstr ""
"adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-1,-*-fixed-medium-r-"
@@ -6734,11 +6806,11 @@ msgstr "ĥ꡼̤"
msgid "Toggle between flat and group sorted"
msgstr "Τޤޤȥ롼̤ڤؤ"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "󥿡ͥåȤ³"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6748,53 +6820,43 @@ msgstr ""
"Ǥ⡢pptp䡢dhcpȤʤ³⤢ޤ\n"
"狼ʤСpppoeȤפǤ"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "dhcpȤ"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "pppoeȤ"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "pptpȤ"
#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
msgid "Web Server"
-msgstr ""
+msgstr "Web "
#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
msgid "Domain Name Server"
-msgstr "ɥᥤ̾"
+msgstr "ɥᥤ̾"
#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
msgid "Mail Server"
-msgstr "ǡ١"
+msgstr "᡼륵"
#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
msgid "POP and IMAP Server"
-msgstr "LDAP"
+msgstr "POPIMAP"
#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
msgid "No network card"
msgstr "ͥåȥɤդޤ"
#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
msgid ""
"drakfirewall configurator\n"
"\n"
@@ -6802,7 +6864,7 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"ߥ˥ե\n"
+"drakfirewall\n"
"\n"
" Mandrake Linux ޥѤθĿѥե򤷤ޤ\n"
"ϤѥեˤϡѤ MandrakeSecurity\n"
@@ -6810,7 +6872,7 @@ msgstr ""
#: ../../network/drakfirewall.pm_.c:147
msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
+msgstr "󥿡ͥåȤǤɤΥӥ³Ĥޤ"
#: ../../network/drakfirewall.pm_.c:148
msgid ""
@@ -6818,6 +6880,9 @@ msgid ""
"Valid examples are: 139/tcp 139/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
+"¾ƼݡȤ򤳤ϤǤޤ\n"
+"ͭ: 139/tcp 139/udp.\n"
+"ܤ /etc/services 򸫤Ƥ"
#: ../../network/drakfirewall.pm_.c:154
#, c-format
@@ -6826,15 +6891,17 @@ msgid ""
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535."
msgstr ""
+"̵ʥݡȤޤ: %s.\n"
+" \"port/tcp\" ޤ \"port/udp\", \n"
+"ǡport 1 65535οǤ"
#: ../../network/drakfirewall.pm_.c:162
msgid "Everything (no firewall)"
-msgstr ""
+msgstr "ʥեʤ"
#: ../../network/drakfirewall.pm_.c:164
-#, fuzzy
msgid "Other ports"
-msgstr "ݡȤΥƥ"
+msgstr "¾ݡ"
#: ../../network/ethernet.pm_.c:37
msgid ""
@@ -6865,7 +6932,7 @@ msgstr "󥿡ͥå³˻ȤͥåȥץӤޤ礦"
msgid "no network card found"
msgstr "ͥåȥɤդޤ"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "ͥåȥ"
@@ -6880,15 +6947,15 @@ msgstr ""
"ĤDHCPФưΤ˥ۥ̾ɬפȤޤ\n"
"ۥ̾ϡmybox.mylab.myco.comɤΤ褦¤Ʋ"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "ۥ̾:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "ͥåȥꥦ"
@@ -6935,8 +7002,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Ť (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN"
@@ -6972,23 +7039,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "ɤΥץȥȤޤ"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "ɤʥɤȤäƤޤ"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "ʬʤ"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7001,19 +7073,19 @@ msgstr ""
"\n"
"⤷PCMCIAɤäƤ顢ɤirqioΤɬפޤ\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "³"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "ʤISDNɤϤɤǤ"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7021,7 +7093,7 @@ msgstr ""
"ISDN ɤ򸡽Фޤפʬޤ󡣼β̤ PCI ɤ"
"Ǥ"
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "ISDN PCI ɤϸդޤǤβ̤Ǥ"
@@ -7073,7 +7145,7 @@ msgstr "DNS Сʥץ"
msgid "Second DNS Server (optional)"
msgstr " DNS Сʥץ"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7081,7 +7153,7 @@ msgstr ""
"\n"
"³ڤ뤫뤤ϺꤷƤ"
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7089,11 +7161,11 @@ msgstr ""
"\n"
"󥿡ͥå³Ǥޤ"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "󥿡ͥåȤ³Ƥޤ"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7101,32 +7173,32 @@ msgstr ""
"\n"
"󥿡ͥåȤ³뤫³ꤷƤ"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "ߤϥ󥿡ͥåȤ³Ƥޤ"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "³"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr ""
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "³"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "󥿡ͥå³"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ǥ %s ³ꤷޤ礦"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7145,12 +7217,12 @@ msgstr ""
"\n"
"OKפ򲡤ƻϤޤ礦"
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "ͥåȥ"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7161,7 +7233,7 @@ msgstr ""
"ޤ򤽤Τޤ޻Ȥˤ OK 򥯥åƤͥåȥ/󥿡"
"ͥåȤꤹˤϥ󥻥򲡤ޤ\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7173,72 +7245,72 @@ msgstr ""
"ϥ󥿡ͥå/ͥåȥ³ꤹȤǤ\n"
"ưФȤʤСåϤƤ\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "ꤹץե"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "ưФȤ"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "ѡȥ⡼"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "ǥХθǤġ"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "դĤΥǥ³"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "ݡ %s ǸФޤ"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN ³"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s 򸡽"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL ³"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "󥿡ե %s Ǹ"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "֥³"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "֥³Фޤ"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN ³"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ͥåȥɤФޤ"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "ꤷ³Dz"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7248,23 +7320,23 @@ msgstr ""
"ɤȤǤ\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "󥿡ͥå³"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "֡Ȼ³򳫻Ϥޤ"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "ͥåȥ"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "ͥåȥƵưƤ"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7275,7 +7347,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7285,7 +7357,7 @@ msgstr ""
"\n"
"򤳤줫饷ƥȿǤޤ\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7293,7 +7365,7 @@ msgstr ""
"줬ä顢X ɥĶƵươۥ̾ѹȼ\n"
"򤷤Ƥ"
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7303,7 +7375,7 @@ msgstr ""
"net_monitor mcc³åƤ³ǤƤʤ"
"Ƶưۤ⤷ޤ"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7314,7 +7386,7 @@ msgstr ""
"ȤĤСΤޤ OK 򲡤Ƥ\n"
"ʲΥեɤѹȡ꤬ѤäƤޤޤ"
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7324,43 +7396,42 @@ msgstr ""
"ơιܤˤϥɥåȤǶڤ줿ʿ(㡤1.2.3.4)IP ɥ쥹ȤϤ"
"ޤ"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "ͥåȥǥХ %s "
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (ɥ饤 %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ɥ쥹:"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "ͥåȥޥ:"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP μư"
-#: ../../network/network.pm_.c:315
-#, fuzzy
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "ư˳"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ɥ쥹 1.2.3.4 Τ褦ϤƲ"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7371,42 +7442,52 @@ msgstr ""
"ۥ̾ϡmybox.mylab.myco.comɤΤ褦ˤƲ\n"
"⤷ȥС IP ɥ쥹ϤƲ"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS "
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "ȥ ( %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "ȥǥХ"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP ɥ쥹 1.2.3.4 Τ褦ϤƲ"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP ɥ쥹 1.2.3.4 Τ褦ϤƲ"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "ץ"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "ͥåȥɤidסʥåץȥåפ"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy http://... Ǥ"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy ftp://... Ǥ"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url ftp:http: ǤϤޤޤ"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7523,7 +7604,7 @@ msgstr "ȥѥ"
#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
-msgstr ""
+msgstr "ꥹ"
#: ../../partition_table.pm_.c:602
msgid "mount failed: "
@@ -7656,7 +7737,6 @@ msgid "Pipe job into a command"
msgstr "֤򥳥ޥɤإѥ"
#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
-#, fuzzy
msgid "Unknown Model"
msgstr "̤ΤΥǥ"
@@ -7706,7 +7786,7 @@ msgid ", printing to %s"
msgstr "%s ذ"
#: ../../printer.pm_.c:792
-#, fuzzy, c-format
+#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "LPD %s׾, ץ󥿡%s"
@@ -7715,13 +7795,14 @@ msgstr "LPD %s׾, ץ󥿡%s"
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP ۥȡ%s, ݡ %s"
+# y, c-format
#: ../../printer.pm_.c:798
-#, fuzzy, c-format
+#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "ɥ %s׾, ͭ%s"
#: ../../printer.pm_.c:802
-#, fuzzy, c-format
+#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "Novell %s׾, ץ󥿡%s"
@@ -7775,7 +7856,7 @@ msgstr ""
#: ../../printerdrake.pm_.c:36
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr ""
+msgstr "ץ󥿼ư (롢TCP/Socket, SMBץ)"
#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
@@ -7861,34 +7942,37 @@ msgid "Printerdrake"
msgstr "Printerdrake"
#: ../../printerdrake.pm_.c:178
-#, fuzzy
msgid "Checking your system..."
-msgstr "ץ󥿥ƥƵư..."
+msgstr "ƥĴ..."
#: ../../printerdrake.pm_.c:186
msgid ""
"There are no printers found which are directly connected to your machine"
-msgstr ""
+msgstr "ޥľ뤷ץ󥿤Ĥޤ"
#: ../../printerdrake.pm_.c:198
-#, fuzzy
msgid ""
"The following printers\n"
"\n"
-msgstr "ʲΥѥåޤ"
+msgstr ""
+"ʲΥץ\n"
+"\n"
#: ../../printerdrake.pm_.c:199
-#, fuzzy
msgid ""
"The following printer\n"
"\n"
-msgstr "ʲΥѥåޤ"
+msgstr ""
+"ʲΥץ\n"
+"\n"
#: ../../printerdrake.pm_.c:201
msgid ""
"\n"
"and one unknown printer are "
msgstr ""
+"\n"
+"1̤ΤΥץ󥿤"
#: ../../printerdrake.pm_.c:203
#, c-format
@@ -7896,29 +7980,36 @@ msgid ""
"\n"
"and %d unknown printers are "
msgstr ""
+"\n"
+" %d ̤ΤΥץ󥿤"
#: ../../printerdrake.pm_.c:207
msgid ""
"\n"
"are "
msgstr ""
+"\n"
+""
#: ../../printerdrake.pm_.c:208
msgid ""
"\n"
"is "
msgstr ""
+"\n"
+""
#: ../../printerdrake.pm_.c:210
-#, fuzzy
msgid "directly connected to your system"
-msgstr "ƥΥեȤ򥳥ԡ"
+msgstr "ޥľ뤷Ƥޤ"
#: ../../printerdrake.pm_.c:213
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
+"\n"
+"̤ΤΥץ󥿤ޥľ뤷Ƥޤ"
#: ../../printerdrake.pm_.c:215
#, c-format
@@ -7926,33 +8017,31 @@ msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
+"\n"
+"%d ̤ΤΥץ󥿤ޥľ뤷Ƥޤ"
#: ../../printerdrake.pm_.c:221
-#, fuzzy
msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "ǥϤɤΥꥢݡȤˤĤʤäƤޤ"
+msgstr "(٤ƤΥץ󥿤³ŸƤ)\n"
#: ../../printerdrake.pm_.c:235
msgid ""
"Do you want to enable printing on the printers mentioned above or on "
"printers in the local network?\n"
msgstr ""
+"嵭Υץ󥿤ͥåȥΥץ󥿤Ǥΰǽˤޤ\n"
#: ../../printerdrake.pm_.c:236
-#, fuzzy
msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-"Υץ (\"%s\") \n"
-"ǥեȥץ󥿤ˤޤ"
+msgstr "ͥåȥΥץ󥿤ǰǽˤޤ\n"
#: ../../printerdrake.pm_.c:238
-#, fuzzy
msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "֡Ȼ³򳫻Ϥޤ"
+msgstr "嵭Υץ󥿤ǰǽˤޤ\n"
#: ../../printerdrake.pm_.c:239
msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
+msgstr "Υޥ˰򤷤ޤ\n"
#: ../../printerdrake.pm_.c:240
#, c-format
@@ -7960,6 +8049,8 @@ msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
+"ץ󥿤εȰˤäƤϡ %d MB ɲåեȤ󥹥ȡ"
+"뤵ޤ"
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
@@ -8008,6 +8099,22 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
"want to set up your printer(s) now."
msgstr ""
+"\n"
+"ץꥦɤؤä\n"
+"\n"
+"ΥɤǤϡΥޥͥåȥľ뤷ץ󥿤䡢⡼Ȥ"
+"ɥޥˤĤʤäץ󥿤򥤥󥹥ȡ뤷ޤ\n"
+"\n"
+"ޥ˥ץ󥿤³Ƥʤ顢֥ĤʤŸƤ"
+"ưФޤޤͥåȥץ󥿤䥦ɥޥƱ"
+"³ŸƤ\n"
+"\n"
+"ʤͥåȥΥץ󥿤μưФϡޥľ뤷ץ󥿤μư"
+"Фϻ֤ޤɬפʤСͥåȥץ󥿤䥦"
+"Υץ󥿼ưФϥդˤƤޤ礦\n"
+"\n"
+"Ǥּפ򥯥åƤץ򤷤ʤʤ֥"
+"פ򥯥åޤ礦"
#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
msgid ""
@@ -8023,6 +8130,17 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
"want to set up your printer(s) now."
msgstr ""
+"\n"
+"ץꥦɤؤä\n"
+"\n"
+"ΥɤǤϡΥޥͥåȥľ뤷ץ󥿤䡢⡼Ȥ"
+"ɥޥˤĤʤäץ󥿤򥤥󥹥ȡ뤷ޤ\n"
+"\n"
+"ޥ˥ץ󥿤³Ƥʤ顢֥ĤʤŸƤ"
+"ưФޤ\n"
+"\n"
+"Ǥּפ򥯥åƤץ򤷤ʤʤ֥"
+"פ򥯥åޤ礦"
#: ../../printerdrake.pm_.c:297
msgid ""
@@ -8043,19 +8161,34 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
"want to set up your printer(s) now."
msgstr ""
+"\n"
+"ץꥦɤؤä\n"
+"\n"
+"ΥɤǤϡΥޥͥåȥľ뤷ץ󥿤򥤥󥹥ȡ"
+"ޤ\n"
+"\n"
+"ޥ˥ץ󥿤³Ƥʤ顢֥ĤʤŸƤ"
+"ưФޤޤͥåȥץ󥿤Ʊ³ŸƤ"
+"\n"
+"\n"
+"ʤͥåȥΥץ󥿤μưФϡޥľ뤷ץ󥿤μư"
+"Фϻ֤ޤɬפʤСͥåȥץ󥿼ưФ"
+"դˤƤޤ礦\n"
+"\n"
+"Ǥּפ򥯥åƤץ򤷤ʤʤ֥"
+"פ򥯥åޤ礦"
#: ../../printerdrake.pm_.c:315
-#, fuzzy
msgid "Auto-detect printers connected to this machine"
-msgstr "ץ󥿼ư"
+msgstr "ޥľץ󥿼ư"
#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
+msgstr "ͥåȥ³Υץ󥿸"
#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
+msgstr "ޥեȥɥΥץ󥿼ư"
#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
#: ../../printerdrake.pm_.c:587
@@ -8088,19 +8221,18 @@ msgstr ""
#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
-#, fuzzy
msgid "Printer auto-detection"
-msgstr "ưФ򤹤"
+msgstr "ץ󥿼ưФ򤹤"
#: ../../printerdrake.pm_.c:408
-#, fuzzy, c-format
+#, c-format
msgid ", network printer \"%s\", port %s"
-msgstr ", TCP/IP ۥȡ%s, ݡ %s"
+msgstr ", ͥåȥץ󥿡%s, ݡ %s"
#: ../../printerdrake.pm_.c:410
-#, fuzzy, c-format
+#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/ɥ 95/98/NTоΥץ"
+msgstr ", ץ󥿡%sסSMB/ɥ 95/98/NTС%s׾"
#: ../../printerdrake.pm_.c:416
#, c-format
@@ -8120,14 +8252,14 @@ msgid "USB printer \\/*%s"
msgstr "USB ץ \\/*%s"
#: ../../printerdrake.pm_.c:424
-#, fuzzy, c-format
+#, c-format
msgid "Network printer \"%s\", port %s"
-msgstr "ͥåȥץ󥿡TCP/åȡ"
+msgstr "ͥåȥץ %s, ݡ %s"
#: ../../printerdrake.pm_.c:426
-#, fuzzy, c-format
+#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/ɥ 95/98/NTоΥץ"
+msgstr "ץ %s, SMB/ɥ 95/98/NT%s"
#: ../../printerdrake.pm_.c:563
msgid ""
@@ -8146,16 +8278,12 @@ msgid "You must enter a device or file name!"
msgstr "ǥХե̾ϤƤ"
#: ../../printerdrake.pm_.c:578
-#, fuzzy
msgid "No printer found!"
-msgstr ""
-"ץ󥿤Ĥޤ\n"
-"\n"
+msgstr "ץ󥿤Ĥޤ"
#: ../../printerdrake.pm_.c:588
-#, fuzzy
msgid "Available printers"
-msgstr "ץ"
+msgstr "Ȥץ"
#: ../../printerdrake.pm_.c:592
msgid ""
@@ -8252,24 +8380,23 @@ msgid "Remote printer name missing!"
msgstr "⡼ȥץ̾ޤ"
#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
-#, fuzzy, c-format
+#, c-format
msgid "Detected model: %s %s"
-msgstr "%s 򸡽"
+msgstr "Ф줿ǥ: %s %s"
#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
-#, fuzzy
msgid "Scanning network..."
-msgstr "ͥåȥư..."
+msgstr "ͥåȥ..."
#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
-#, fuzzy, c-format
+#, c-format
msgid ", printer \"%s\" on server \"%s\""
-msgstr "ɥ %s׾, ͭ%s"
+msgstr ", ץ%s, С%s׾"
#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
-#, fuzzy, c-format
+#, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr "ʲΥץ󥿤ǰ桧 \"%s\""
+msgstr "ץ%s, С%s׾"
#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
@@ -8291,6 +8418,8 @@ msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
+"˾Υץ󥿤ưФ줿顢ǡɬפ˱ƥ桼"
+"̾ѥɡ롼פʤɤϤƤ"
#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
@@ -8309,9 +8438,8 @@ msgid "Workgroup"
msgstr "롼"
#: ../../printerdrake.pm_.c:853
-#, fuzzy
msgid "Auto-detected"
-msgstr "ưФ򤹤"
+msgstr "ưФ줿"
#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
@@ -8323,7 +8451,7 @@ msgstr "Samba̾ޤ"
#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "!!!ƥٹ!!!"
#: ../../printerdrake.pm_.c:875
#, c-format
@@ -8348,6 +8476,23 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"줫ѥɤĤΥɥΥȾǤΰԤޤ"
+"Samba饤ȥեȥΥƥη٤Τᡢѥɤϰ"
+"֤򥦥ɥФ˻ȤSamba饤ȤΥޥɥ饤"
+"ʿʸΤޤޤޤ餳Υޥ桼ϡps auxwwwץޥ"
+"¹ԤȡѥɤɽǤƤޤޤ\n"
+"\n"
+"Ǥаʲ򤪤ᤷޤʤξˤ⡢ȤХե"
+"ʤɤȤäƥɥФ˥ǤΤͥåȥ"
+"ΥޥǤ뤳Ȥǧޤ礦):\n"
+"\n"
+"ɥоǡGUESTפʤɥѥɤΤʤȤ䡢ѤΥ"
+"ȤȤȡĿͤΥȤԥȤѥݸ"
+"ƤϤޤ\n"
+"\n"
+"ɥФǡץ󥿤LPDץȥ󶡤褦ˤ롣"
+"Ƥޥ󤫤ΰPrinterdrake \"%s\" ³פǹԤ\n"
+"\n"
#: ../../printerdrake.pm_.c:885
#, c-format
@@ -8357,6 +8502,9 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"ɥФꤷƥץ󥿤IPPץȥ󶡤褦ˤ롣"
+"Ƥޥ󤫤ΰPrinterdrake \"%s\" ³פǹԤ\n"
+"\n"
#: ../../printerdrake.pm_.c:888
msgid ""
@@ -8365,6 +8513,10 @@ msgid ""
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
+"ץ󥿤LinuxФ³ơɥޥ򤽤Υ饤ȤȤ"
+"³褦ˤ롣\n"
+"\n"
+"ޤξ֤ǥץ󥿤³ޤ?"
#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
@@ -8398,14 +8550,14 @@ msgid "NCP queue name missing!"
msgstr "NCP 塼̾ޤ"
#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
-#, fuzzy, c-format
+#, c-format
msgid ", host \"%s\", port %s"
-msgstr ", TCP/IP ۥȡ%s, ݡ %s"
+msgstr ", ۥȡ%s, ݡ %s"
#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
-#, fuzzy, c-format
+#, c-format
msgid "Host \"%s\", port %s"
-msgstr ", TCP/IP ۥȡ%s, ݡ %s"
+msgstr "ۥȡ%s, ݡ %s"
#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
@@ -8416,29 +8568,29 @@ msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
+"鼫ưХץ󥿤ɤ줫֤ϥեɤ˥ۥ̾IP ȥ"
+"ǥݡֹʥǥեȤ9100ˤϤ롣"
#: ../../printerdrake.pm_.c:1085
-#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""
-"åȥץ󥿤ǰʤ顢ץ󥿤Υۥ̾ȡˤäƤ\n"
-"ݡֹ椬ɬפˤʤޤHP JetDirect ФǤϡݡֹ\n"
-"̾9100ǤۤΥФȤޤޤǤϡɥΥޥ˥奢\n"
-"ޤ礦"
+"TCPޤϥåȥץ󥿤ǰʤ顢ץ󥿤Υۥ̾IPֹȻˤ"
+"ݡֹ (ǥեȤ9100) ɬפˤʤޤHP JetDirect ФǤϡݡ"
+"ֹ\n"
+"̾9100ǤۤΥФȤޤޤǤϡɥΥޥ˥奢򸫤"
+"礦"
#: ../../printerdrake.pm_.c:1090
-#, fuzzy
msgid "Printer host name or IP missing!"
-msgstr "ץ󥿥ۥ̾ޤ"
+msgstr "ץ󥿥ۥ̾IPޤ"
#: ../../printerdrake.pm_.c:1112
-#, fuzzy
msgid "Printer host name or IP"
-msgstr "ץ󥿥ۥ̾"
+msgstr "ץ󥿥ۥ̾IP"
#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
@@ -8588,7 +8740,6 @@ msgstr ""
"ץ󥿤ݡȤˤĤʤ³ƤޥꤷƤ"
#: ../../printerdrake.pm_.c:1813
-#, fuzzy
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8610,7 +8761,7 @@ msgstr ""
#: ../../printerdrake.pm_.c:1816
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-msgstr ""
+msgstr "Zenographics ZJ-StreamGDI졼ץ"
#: ../../printerdrake.pm_.c:1817
msgid ""
@@ -8634,6 +8785,22 @@ msgid ""
"The first command can be given by any normal user, the second must be given "
"as root. After having done so you can print normally.\n"
msgstr ""
+"ʤΥץ󥿤ϡZenographics ZJ-stream饹ǥץ󥿤˥ǡ"
+"롢GDI졼ץ󥿤ΰǤΥץѤΥɥ饤ФϤޤȯνʤ"
+"ǡɬǽʤ⤷ޤäˡA4ʳѻǤϻȤʤ"
+"⤷ޤ\n"
+"\n"
+"ȤȤΥɥ饤ФȤHP LaserJet 1000ʤɤǤϡץ󥿤ŸƤ"
+"ե०žɬפˤʤޤHP LaserJet1000 ξˤϥץ󥿤"
+"ɥɥ饤CDõɥѡƥõ\"sihp1000."
+"img\" ȤեõʲΥޥɤΤ줫ǤΥեץ"
+"ޤ:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"ǽΥޥɤϤǤ¹ԤǤޤܤrootǤʤȼ¹ԤǤޤ󡣤"
+"줬ä̤˰Ǥޤ\n"
#: ../../printerdrake.pm_.c:2040
msgid ""
@@ -8791,14 +8958,14 @@ msgstr ""
"ȤС%s <file>פȤǤ "
#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
-#, fuzzy, c-format
+#, c-format
msgid ""
"To know about the options available for the current printer read either the "
"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"ޤΥץ󥿤ǻȤ륪ץ򸫤ˤϡΰɤफ\n"
-"뤤ϡ֥ץץܥ򥯥åޤ礦%s\n"
+"뤤ϡ֥ץץܥ򥯥åޤ礦%s%s\n"
"\n"
#: ../../printerdrake.pm_.c:2300
@@ -8876,9 +9043,9 @@ msgstr ""
"ȤС%s <file>פȤǤ\n"
#: ../../printerdrake.pm_.c:2343
-#, fuzzy, c-format
+#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "ʲǰ/ \"%s\""
+msgstr "ʲǰ//եȥɡ \"%s\""
#: ../../printerdrake.pm_.c:2344
#, c-format
@@ -8886,9 +9053,9 @@ msgid "Printing/Scanning on \"%s\""
msgstr "ʲǰ/ \"%s\""
#: ../../printerdrake.pm_.c:2346
-#, fuzzy, c-format
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "ʲǰ/ \"%s\""
+msgstr "ʲǰ/եȥɥ \"%s\""
#: ../../printerdrake.pm_.c:2347
#, c-format
@@ -8898,7 +9065,7 @@ msgstr "ʲΥץ󥿤ǰ桧 \"%s\""
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8909,7 +9076,7 @@ msgid "Print option list"
msgstr "ץ󥿥ץ"
#: ../../printerdrake.pm_.c:2373
-#, fuzzy, c-format
+#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
@@ -8942,6 +9109,13 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
+"ץ󥿤ϡPCեȥɥɥ饤֤˥Ǥ褦˼ưꤵޤ"
+"ǥեåץ\"MtoolsFM\" (Menu: \"ץꥱ\" -> "
+"\"եġ\" -> \"MTools եޥ͡\") ޥɥ饤Υ桼"
+"ƥƥ \"mtools\" (ܤϥޥɥ饤\"man mtools\" ) "
+"äƥեȥɤ˥ǤޤɤΥե륷ƥϡɥ饤ʸ"
+" \"p:\"ʹߤȤʤޤ\"MtoolsFM\" Ǥϥեα夹 Υե"
+"ǥɥ饤ʸѤޤ"
#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
#: ../../printerdrake.pm_.c:3170
@@ -9213,7 +9387,7 @@ msgid "Which printing system (spooler) do you want to use?"
msgstr "ɤΰƥʥסˤȤޤ"
#: ../../printerdrake.pm_.c:2895
-#, fuzzy, c-format
+#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "ץ \"%s\" ..."
@@ -9227,7 +9401,6 @@ msgid "Printer options"
msgstr "ץ󥿥ץ"
#: ../../printerdrake.pm_.c:2989
-#, fuzzy
msgid "Preparing Printerdrake..."
msgstr "PrinterDrake..."
@@ -9339,7 +9512,7 @@ msgid "Remove printer"
msgstr "ץ󥿺"
#: ../../printerdrake.pm_.c:3472
-#, fuzzy, c-format
+#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Ťץ \"%s\" ..."
@@ -9392,7 +9565,7 @@ msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ץ %s ˺ޤ"
#: ../../printerdrake.pm_.c:3527
-#, fuzzy, c-format
+#, c-format
msgid "Removing printer \"%s\"..."
msgstr "ץ \"%s\" ..."
@@ -9445,11 +9618,6 @@ msgstr ""
"ftp ץϤƤ\n"
"ftp proxyȤʤʤˤƤƤ"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url http://... ǤϤޤޤ"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9497,6 +9665,42 @@ msgstr "mkraid ˼ (raidtools äƤʤΤ?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "RAID ٥ %d Τˤϥѡƥ­Ǥ\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "ƥ:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "ƥ"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "ƥԡʥŻҥ᡼"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (ǥե)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "ƥ٥"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "󥹥ȡν桢Ԥ"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA (Linux ɥƥ) ɥƥ൯ư"
@@ -9792,7 +9996,7 @@ msgstr "󥿡ͥå"
msgid "File sharing"
msgstr "ե붦ͭ"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "ƥ"
@@ -9869,64 +10073,56 @@ msgstr "ե꡼եȤ˻äޤ礦"
#: ../../share/advertising/02-community.pl_.c:10
msgid "Want to know more about the Open Source community?"
-msgstr ""
+msgstr "ץ󥽡ߥ˥ƥˤĤƤäȾܤΤꤿǤ"
#: ../../share/advertising/02-community.pl_.c:11
-#, fuzzy
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums you'll find on our \"Community\" webpages"
msgstr ""
-"ץ󥽡ߥ˥ƥΤȤäΤäơΰˤʤޤ礦֥"
-"ߥ˥ƥץ֥ڡˤƼե˻äơؤӡۤ"
-"͡ޤ礦"
+"ʬμͭLinuxġιۤˤϡ֥ߥ˥ƥץ֥ڡ"
+"ˤե˻äޤ礦"
#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
msgid "Get the most from the Internet"
-msgstr "󥿡ͥåȤ³"
+msgstr "󥿡ͥåȤ¤˳"
#: ../../share/advertising/03-internet.pl_.c:10
-#, fuzzy
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
-"Mandrake Linux 9.0 ϥ󥿡ͥåȤ󶡤Τ٤Ƥ˥Ǥǹ"
-"եȤꤽƤޤ֤򥵡ե󤷤ơư򸫤ʤMozilla "
-"Konqueror 뤷᡼ȸĿ;Evolution Kmail, ¾"
-"ʤǤ⤢ޤ"
+"Mandrake Linux 9.0 ϺǹΥեȤꤽƤޤ֤򥵡դơư"
+"򸫤ʤMozilla Konqueror 뤷᡼ȸĿ;"
+"Evolution KmailȤޤ"
#: ../../share/advertising/04-multimedia.pl_.c:9
msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
+msgstr "ǿΥեåޥǥġɤ"
#: ../../share/advertising/04-multimedia.pl_.c:10
msgid "Push multimedia to its limits!"
-msgstr ""
+msgstr "ޥǥȤݤޤ礦"
#: ../../share/advertising/04-multimedia.pl_.c:11
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
"files, edit and handle your images or photos, and play videos"
msgstr ""
-"Mandrake Linux 8.2 ϡޥǥǽ˸¤ޤǻȤݤޤǿեȤ"
-"ڤ䲻եκ򤷤ꡢ̿ꡢƥӤ򸫤ꡢ"
-"¾ʤǤǤޤ"
+"Mandrake Linux 9.0 ǤϡǿեȤDzڤ䲻եκ򤷤ꡢ"
+"̿ꡢƥӤ򸫤Ǥޤ"
#: ../../share/advertising/05-games.pl_.c:9
msgid "Games"
msgstr ""
#: ../../share/advertising/05-games.pl_.c:10
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
"strategy, ..."
msgstr ""
-"Mandrake Linux 8.2 ˤϡǹΥץ󥽡बĤƤޤ"
+"Mandrake Linux 9.0 ˤϡǹΥץ󥽡बĤƤޤ"
"󷿡ɥࡢݡġά..."
#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
@@ -9934,12 +10130,11 @@ msgid "Mandrake Control Center"
msgstr "Mandrake ȥ륻󥿡"
#: ../../share/advertising/06-mcc.pl_.c:10
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
"your machine"
msgstr ""
-"Mandrake Linux 8.2 ȥ륻󥿡ϡMandrake ƥΥޥ"
+"Mandrake Linux 9.0 ȥ륻󥿡ϡMandrake ƥΥޥ"
"ΤΥ󥹥ȥåץѥͥ뽸Ǥ"
#: ../../share/advertising/07-desktop.pl_.c:9
@@ -9948,36 +10143,35 @@ msgstr "桼󥿡ե"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
+"Mandrake Linux 9.0ˤ11Υ桼󥿡եĤƤơɤ⹥"
+"ʤ褦ѹǤޤ: KDE 3, Gnome 2, WindowMaker, ..."
#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
msgid "Development simplified"
-msgstr "ȯ"
+msgstr "ȯڤˤʤޤ"
#: ../../share/advertising/08-development.pl_.c:10
msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
+msgstr "Mandrake Linux 9.0ϵˤγȯѥץåȥۡǤ"
#: ../../share/advertising/08-development.pl_.c:11
-#, fuzzy
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
"development environments"
msgstr ""
-"Mandrake Linux 8.2 ϵˤγȯץåȥۡǤGNU gcc ѥϤ"
-"ᡢǹΥץ󥽡ȯĶΰϤȯޤ礦"
+"GNU gcc 3 ѥϤᡢǹΥץ󥽡ȯĶΰϤȤޤ"
+""
#: ../../share/advertising/09-server.pl_.c:9
msgid "Turn your machine into a reliable server"
-msgstr ""
+msgstr "ޥ򹹿饤Ф"
#: ../../share/advertising/09-server.pl_.c:10
-#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"ޥۤοåǡʤΥޥ϶ϤʥФѤꡪ"
@@ -9986,40 +10180,42 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:9
msgid "Optimize your security"
-msgstr ""
+msgstr "ƥκŬ"
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
"F.)"
msgstr ""
+"MandrakeSecurity ʤˤ Multi Network Firewall (M.N.F.)⤢ޤ"
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
+"ΥեʤȤСƥˡ򤹤٤ͥå"
+"ǽޤ"
#: ../../share/advertising/10-mnf.pl_.c:12
msgid "This product is available on MandrakeStore website"
-msgstr ""
+msgstr "ʤMandrakeStore֥Ⱦˤޤ"
#: ../../share/advertising/11-mdkstore.pl_.c:9
msgid "The official MandrakeSoft store"
-msgstr ""
+msgstr "MandrakeSoftŹ"
#: ../../share/advertising/11-mdkstore.pl_.c:10
-#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"ե󥸤Linux 塼䡢ʤƼ異ƥò䤬ҤΥ"
-"饤ŹǼޤ"
+"饤 e-ŹǼޤ"
#: ../../share/advertising/12-mdkstore.pl_.c:9
msgid "Strategic partners"
-msgstr ""
+msgstr "άѡȥʡ"
#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
@@ -10027,20 +10223,24 @@ msgid ""
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
+"MandrakeSoft ϳƼδȤȤMandrake LinuxȸߴΤ٤ʥ塼"
+"󶡤ޤѡȥʡΰMandrakeStoreˤޤ"
#: ../../share/advertising/13-mdkcampus.pl_.c:9
msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr ""
+msgstr "MandrakeSoftθLinux-Campusɤ"
#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
"The training program has been created to respond to the needs of both end "
"users and experts (Network and System administrators)"
msgstr ""
+"Ƽ︦ץϡ桼ȡʥͥåȥ䥷ƥԡˤΥˡ"
+"˹礦褦˺Ƥޤ"
#: ../../share/advertising/13-mdkcampus.pl_.c:11
msgid "Certify yourself on Linux"
-msgstr ""
+msgstr "Linuxεǽǧ褦"
#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
@@ -10048,43 +10248,47 @@ msgid ""
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
"certification program (worldwide professional technical certification)"
msgstr ""
+"饤ˤͥåȥѡȥʡ̤Ƥˤ衢Linux-Campus "
+"ϡǧ٤ι⤤LPIǧץŪ絻ѻʤμμ˺Ŭ"
+"Ǥ"
#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
msgid "Become a MandrakeExpert"
-msgstr "Mandrakeѡ"
+msgstr "MandrakeѡȤˤʤ"
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform"
-msgstr ""
+msgstr "MandrakeSoftΥ饤󥵥ݡȥץåȥۡ"
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
+"MandrakeSoft ݡȥLinux ߥ˥ƥ˥饤ǻäμ"
+"ͭ¾οͤޤ礦ˤϡ饤󵻽ѥݡȥ֥Ⱦ"
+"ǧΤ줿Ȥˤʤޤ礦:"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert Corporate"
-msgstr "Mandrakeѡ"
+msgstr "Mandrakeȥѡ"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
msgid "An online platform to respond to company's specific support needs"
-msgstr ""
+msgstr "ȸͭΥݡȥˡ˱륪饤ץåȥۡ"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
-msgstr ""
+msgstr "٤Ƥλݤͤι⵻ǽMandrakeSoftȤˤäפޤ"
#: ../../share/advertising/17-mdkclub.pl_.c:9
msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
+msgstr "MandrakeClub Mandrake Corporate Club"
#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
@@ -10095,174 +10299,169 @@ msgid ""
"competititve edge, if you want to support Mandrake Linux development, join "
"MandrakeClub!"
msgstr ""
+"MandrakeClub Mandrake Corporate Club ϡMandrake LinuxΥӥͥĿ"
+"桼Linuxǥȥӥ塼򥵥ݡȤĤġäȤ"
+"åȤ뤿˺ޤʤ˾餢뤤ϸ"
+"ʤǶϤƤʤ顢뤤Mandrake Linuxγȯ򥵥ݡȤ"
+"СMandrakeClub˻äޤ礦!"
#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "ѥåΥ󥹥ȡ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Ȥ Ctrl-Alt-BackSpace 򲡤Ʋ"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "ѹͭˤˤ %s ˥󤷤ʤƲ"
#: ../../standalone/drakTermServ_.c:188
-#, fuzzy
msgid "Mandrake Terminal Server Configuration"
-msgstr "ץ󥿤ư"
+msgstr "Mandrakeߥʥ륵"
#: ../../standalone/drakTermServ_.c:203
-#, fuzzy
msgid "Enable Server"
-msgstr "ǡ١"
+msgstr "Фͭ"
#: ../../standalone/drakTermServ_.c:210
-#, fuzzy
msgid "Disable Server"
-msgstr "ǡ١"
+msgstr "Ф̵"
#: ../../standalone/drakTermServ_.c:218
-#, fuzzy
msgid "Start Server"
-msgstr "NIS "
+msgstr "еư"
#: ../../standalone/drakTermServ_.c:225
-#, fuzzy
msgid "Stop Server"
-msgstr "NIS "
+msgstr ""
#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
-msgstr ""
+msgstr "Etherboot Floppy/ISO"
#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
-msgstr ""
+msgstr "ͥåȥ֡ȥ᡼"
#: ../../standalone/drakTermServ_.c:239
-#, fuzzy
msgid "Add/Del Users"
-msgstr "桼ɲ"
+msgstr "桼ɲ/"
#: ../../standalone/drakTermServ_.c:241
-#, fuzzy
msgid "Add/Del Clients"
-msgstr "DHCP 饤"
-
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "إ"
+msgstr "饤ɲ/"
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
-msgstr ""
+msgstr "ưեåԡ"
#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
-msgstr ""
+msgstr "ư ISO"
#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
-msgstr ""
+msgstr "ͥΤ -->"
#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
-msgstr ""
+msgstr "ˤϤФ餯ޤ"
#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
-msgstr ""
+msgstr "ͥ뤬ĤФƤޤ"
#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
-msgstr ""
+msgstr "ñNIC -->"
#: ../../standalone/drakTermServ_.c:535
-#, fuzzy
msgid "No nic selected!"
-msgstr "³Ƥޤ"
+msgstr "nic ФƤޤ!"
#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
-msgstr ""
+msgstr "ͥ빽 -->"
#: ../../standalone/drakTermServ_.c:552
-#, fuzzy
msgid "<-- Delete"
-msgstr ""
+msgstr "<-- "
#: ../../standalone/drakTermServ_.c:559
-#, fuzzy
msgid "Delete All NBIs"
-msgstr "٤Ƥ"
+msgstr "NBI ٤ƺ"
#: ../../standalone/drakTermServ_.c:621
-#, fuzzy
msgid "Add User -->"
-msgstr "桼ɲ"
+msgstr "桼ɲ -->"
#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
-msgstr ""
+msgstr "<-- 桼"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "ͥåȥ֡ȥ᡼"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
-msgstr ""
+msgstr "饤ɲ -->"
-#: ../../standalone/drakTermServ_.c:735
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
-msgstr "DHCP 饤"
+msgstr "<-- 饤Ⱥ"
-#: ../../standalone/drakTermServ_.c:741
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
-msgstr "..."
+msgstr "dhcpd ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
-msgstr ""
+msgstr "񤭹"
-#: ../../standalone/drakTermServ_.c:960
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
-msgstr "Ȥäưեåԡɥ饤 %s "
+msgstr "եåԡƤ:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
-msgstr ""
+msgstr "եåԡ˥Ǥޤ!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
-msgstr ""
+msgstr "եåԡƤפǤ"
-#: ../../standalone/drakTermServ_.c:969
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "ͭʥեåԡɥ饤֤ޤ"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
-msgstr ""
+msgstr "Etherboot ISO ᡼ %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
+msgstr "Ԥޤ -mkisofs ϥ󥹥ȡ뤵Ƥޤ"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
+msgstr "ǽ /etc/dhcpd.conf äƤ"
#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
@@ -10314,9 +10513,8 @@ msgstr ""
"ƥƥåפǡʤΥ󥹥ȡƱˤ뤫ưꤹ뤫Ӥޤ"
#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
-#, fuzzy
msgid "Creating auto install floppy"
-msgstr "󥹥ȡեåԡμư"
+msgstr "ư󥹥ȡեåԡκ"
#: ../../standalone/drakautoinst_.c:144
msgid ""
@@ -10357,20 +10555,19 @@ msgstr "ǸΥƥ"
#: ../../standalone/drakbackup_.c:617
msgid "Cron not available yet as non-root"
-msgstr ""
+msgstr "Cron ϤޤrootʳǤϻȤޤ"
#: ../../standalone/drakbackup_.c:723
msgid "WARNING"
-msgstr ""
+msgstr "*** ٹ ***"
#: ../../standalone/drakbackup_.c:724
-#, fuzzy
msgid "FATAL"
-msgstr "FAT"
+msgstr "*** ̿Ū ***"
#: ../../standalone/drakbackup_.c:725
msgid "INFO"
-msgstr ""
+msgstr ""
#: ../../standalone/drakbackup_.c:737
msgid ""
@@ -10406,13 +10603,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
-#, fuzzy
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "ʹԾ"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10420,42 +10616,46 @@ msgid ""
"Warning: If you've already done this process you'll probably\n"
" need to purge the entry from authorized_keys on the server."
msgstr ""
+"%s ϤǤ¸ߤޤޤ?\n"
+"\n"
+"ٹ𡧤ΥץˤäȤС֤󥵡о\n"
+"authorized_keys 饨ȥۤǤ衣"
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
-msgstr ""
+msgstr "ˤФ餯ޤ"
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
-msgstr ""
+msgstr "顼%s ŸǤޤ"
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
-msgstr ""
+msgstr "%s ݡ %sǥѥɥץץȤФޤ"
-#: ../../standalone/drakbackup_.c:849
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:852
+#, c-format
msgid "Bad password on %s"
-msgstr "ѥɤʤ"
+msgstr "%s Υѥ"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
-msgstr ""
+msgstr "%s %s žΤǧޤǤ"
-#: ../../standalone/drakbackup_.c:851
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:854
+#, c-format
msgid "Can't find %s on %s"
-msgstr "%s ޤ: %s\n"
+msgstr "%s %sǸĤޤ"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
-msgstr ""
+msgstr "%s ޤ"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10465,84 +10665,91 @@ msgid ""
"\n"
"without being prompted for a password."
msgstr ""
+"žޤ\n"
+"ʲΥޥɤǡФ˥Ǥ뤫ǧƤߤƤ:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"ѥɤΥץץȤФʤǤ"
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgstr "WebDAV⡼ȥȤȤǤƱѤ!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
-msgstr ""
+msgstr "WebDAVž!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
-msgstr ""
+msgstr "CDR/DVDR ɥ饤֤ˤޤ!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
-msgstr ""
+msgstr "ϿǽǥǤϤʤ褦Ǥ!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
-msgstr ""
+msgstr "õǽǥǤϤʤ褦Ǥ!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
-msgstr ""
+msgstr "ǥξõˤϤФ餯ޤ"
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
-msgstr ""
+msgstr "CD¤꤬ȯޤ"
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
-msgstr ""
+msgstr "%s ˥ơפޤ"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "ƥեΥХåå..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "ϡɥǥΥХååץե..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "桼եΥХåå..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "ϡɥǥХååפοʹ..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "¾ΥեХåå..."
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
-msgstr "ơפ˥Хåå"
+msgstr "Хååפѹޤ"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
+"\n"
+"%s ͳDrakbackup:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1342
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1346
+#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-"FTP եΥꥹ: %s\n"
+"FTP äե: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10551,39 +10758,46 @@ msgstr ""
"\n"
"(!) FTP ³Υȥ֥: FTPǥХååץեޤǤ\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
+"\n"
+"CD ͳDrakbackup:\n"
+":\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
+"\n"
+"ơ ͳDrakbackup:\n"
+":\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1377
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
-msgstr "(!) ᡼˥顼\n"
+msgstr "᡼˥顼\n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
-msgstr ""
+msgstr "ޤ!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "ե"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "եǥ쥯ȥǡɲáפ򥯥åޤ"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10591,27 +10805,26 @@ msgstr ""
"\n"
"ɬפʥץ˥åĤƤ\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Υץ /etc ǥ쥯ȥΥե򤹤٤ƥХååסǤ"
"\n"
-#: ../../standalone/drakbackup_.c:1600
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "ƥեΥХååס/etcǥ쥯ȥ)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "󥯥󥿥ХååסʸŤХååפϻĤ)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "ץե (passwd, group, fstab) ϴޤʤ"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10619,135 +10832,136 @@ msgstr ""
"ΥץǤϡʥС /etc ǥ쥯ȥ\n"
"Ǥޤ"
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Хååפ˴ޤ᤿桼Dz"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "֥饦Υåϴޤʤ"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "󥯥󥿥ХååסʸŤХååפϻĤ)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Τ"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "桼̾"
-#: ../../standalone/drakbackup_.c:1773
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
-msgstr "Хååפ FTP ³"
+msgstr "Хååפ˥ͥåȥ³"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
-msgstr ""
+msgstr "ͥå: "
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
-msgstr ""
+msgstr "Use Expect for SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
+"SSHХåå׸\n"
+"/ž"
-#: ../../standalone/drakbackup_.c:1781
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
-msgstr "ư"
-
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
msgstr ""
+" \n"
+"ž"
#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr "Ǥ˸åȤƤޤ"
+
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "ۥ̾ IP ϤƤ"
-#: ../../standalone/drakbackup_.c:1791
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-"ΥۥȾǤΥǥ쥯ȥ\n"
-"Хååפ¸ޤ"
+"ΥۥȾǥХååפ¸\n"
+"ǥ쥯ȥ꤫⥸塼ϤƤ"
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "̾ϤƤ"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "ѥɤϤƤ"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Υѥɤ򵭲"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
-msgstr ""
+msgstr "ۥ̾桼̾ѥɤɬܤǤ!"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "CD/DVDROM ˥Хåå"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
+"CD/DVD ǥХǤ\n"
+"(¾ΥեɼưϤˤ Enter 򲡤Ƥ\n"
+"ΥեɤɬܤǤϤʤեϤΥġǤޤ)"
-#: ../../standalone/drakbackup_.c:1921
-#, fuzzy
-msgid "Please choose your CD/DVD media size"
-msgstr "CD ڡǤ"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "CD/DVD ǥΥǤ"
-#: ../../standalone/drakbackup_.c:1927
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
-msgstr "CDRWȤäƤϥåƤ"
+msgstr "ޥåCDɤåƤ"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "CDRWȤäƤϥåƤ"
-#: ../../standalone/drakbackup_.c:1939
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "ޤ CDRW õˤϤ򥯥å"
+msgstr "RW ǥʺǽΥå) õˤϥåƤ"
-#: ../../standalone/drakbackup_.c:1940
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
-msgstr "ư"
+msgstr "õ"
-#: ../../standalone/drakbackup_.c:1946
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
-msgstr "CDRWȤäƤϥåƤ"
+msgstr "DVDRȤäƤϥåƤ"
-#: ../../standalone/drakbackup_.c:1952
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
-msgstr "CDRWȤäƤϥåƤ"
+msgstr "DVDRAMȤäƤϥåƤ"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10755,36 +10969,32 @@ msgstr ""
"CD 饤ΥǥХ̾ϤƤ\n"
": 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
-msgstr "ե"
+msgstr "CDǥХƤޤ!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "ơפ˥Хåå"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "ХååѥǥХ̾ϤƤ"
-#: ../../standalone/drakbackup_.c:2055
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
-msgstr "ޤ CDRW õˤϤ򥯥å"
+msgstr "ᤷʤΥǥХȤˤϤå"
-#: ../../standalone/drakbackup_.c:2061
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
-msgstr "ޤ CDRW õˤϤ򥯥å"
+msgstr "Хåå˥ơפõˤϤå"
-#: ../../standalone/drakbackup_.c:2067
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
-msgstr "ޤ CDRW õˤϤ򥯥å"
+msgstr "Хåå׸˥ơפ򥤥ȤˤϤå"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10792,63 +11002,61 @@ msgstr ""
"Drakbackup˵祵\n"
"ϤƤ"
-#: ../../standalone/drakbackup_.c:2138
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
-msgstr "¸ǥ쥯ȥϤƤ:"
+msgstr "¸Υǥ쥯ȥϤƤ:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "ХååץեΥȤ"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "ͥåȥ"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
-msgstr ""
+msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "ϡɥɥ饤 / NFS"
-#: ../../standalone/drakbackup_.c:2234
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
-msgstr ""
+msgstr "ơ"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "轵"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "ǡȤ"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Хååפδֳ֤Ǥ"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10856,79 +11064,81 @@ msgstr ""
"ХååפΥǥ\n"
"Ǥ͡"
-#: ../../standalone/drakbackup_.c:2287
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
-msgstr "ӥ cron ǡ󤬴ޤޤƤ뤳ȤǧƤ"
+msgstr ""
+"ӥ cron ǡ󤬴ޤޤƤ뤳ȤǧƤ.\n"
+"\n"
+"ߤ٤ƤΥͥåȥǥϡϡɥǥȤޤ"
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Хåå᡼: "
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
+msgstr "¾Υǥ˥Хååפϡɥɥ饤֤tarե"
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr ""
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr ""
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "¾ץ"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Drakbackup "
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "ХååDz"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "ϡɥɥ饤֤"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "ͥåȥͳ"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
-msgstr ""
+msgstr "CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
-msgstr ""
+msgstr "ơץǥХ"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "ХååפΤDz"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "ƥХåå"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "桼Хåå"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "桼ư"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -10936,7 +11146,7 @@ msgstr ""
"\n"
"Хåå׸: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -10944,7 +11154,7 @@ msgstr ""
"\n"
"- ƥե:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -10952,7 +11162,7 @@ msgstr ""
"\n"
"- 桼ե:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -10960,7 +11170,7 @@ msgstr ""
"\n"
"- ¾ե:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -10969,55 +11179,59 @@ msgstr ""
"\n"
"- ϡɥɥ饤־¸ѥ: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
+"\n"
+"- Хåå׸˥ϡɥɥ饤֤tarե\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
+"\n"
+"- CD˾Ƥ"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
-msgstr ""
+msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2604
+#, c-format
msgid " on device: %s"
-msgstr "ޥǥХ: %s\n"
+msgstr "ʲΥǥХ: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
-msgstr ""
+msgstr " (ޥå)"
-#: ../../standalone/drakbackup_.c:2602
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2606
+#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- FTP Ǥ¸ۥ: %s\n"
+"- ʲΥǥХΥơפ¸: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
-msgstr ""
+msgstr "\t\tErase=%s"
-#: ../../standalone/drakbackup_.c:2606
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2610
+#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- FTP Ǥ¸ۥ: %s\n"
+"- ʲΥۥȾ%s¸: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11026,7 +11240,7 @@ msgstr ""
"\t\t 桼̾: %s\n"
"\t\t ѥ: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11034,19 +11248,19 @@ msgstr ""
"\n"
"- ץ:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tƥեϴޤʤ\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tХååפ tar bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tХååפ tar gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11055,41 +11269,39 @@ msgstr ""
"\n"
"- ǡ (%s) ޤ :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-ϡɥɥ饤֡\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
-msgstr ""
+msgstr "\t-ơ \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-ͥåȥ FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-ͥåȥ SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
-msgstr "\t-ͥåȥ FTP.\n"
+msgstr "\t-ͥåȥ rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
-msgstr "\t-ͥåȥ FTP.\n"
+msgstr "\t-ͥåȥ webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "꤬ޤ󡣥ɤ򥯥åƤ\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11097,7 +11309,7 @@ msgstr ""
"ǡΰ:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11105,256 +11317,251 @@ msgstr ""
"Ƥǡ:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "˥åϤƤ"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Хååץե뤬Ƥޤ"
-#: ../../standalone/drakbackup_.c:2832
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " 򤷤ǡϤ٤ "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " %s ޤ "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "¾ΥեˤOK"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr "桼ΰʳƥ桼κǿդפǤ"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "ƥեΥХåå״:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "դ򤷤Ƥ"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Хååפ˥ϡɥǥ"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "¸ǥ쥯ȥϤƤ:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP ³"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "奢³"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "ϡɥǥ"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Хååפ¸ǥ쥯ȥϤƤ"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "ΥǥӤʤƤ"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "¾ǥ"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "ƥ"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "桼"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "¾ե"
-#: ../../standalone/drakbackup_.c:3263
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "ѥ֡/ʳ)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "˿Хååסʥ󥯥󥿥ХååפΤߡ"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "˥桼ǥ쥯ȥ"
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
+"򤷤ȥ\n"
+""
-#: ../../standalone/drakbackup_.c:3392
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
-msgstr "Τ"
+msgstr ""
+"ե\n"
+""
-#: ../../standalone/drakbackup_.c:3409
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
-msgstr "¾ե"
+msgstr ""
+"ѥ\n"
+"ѹ"
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:3479
+#, c-format
msgid "Backup files not found at %s."
-msgstr "Хååץե뤬Ƥޤ"
+msgstr "%s˥Хååץե뤬ޤ"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
+"ܥ塼٥%sCD\n"
+"/mnt/cdromCDɥ饤֤Ƥ"
-#: ../../standalone/drakbackup_.c:3488
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
-msgstr "ϡɥǥ"
+msgstr "CD"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
+msgstr "CD٥뤬ޤäƤޤΥǥ%sǤ"
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
+"ܥ塼٥%sΥơפ\n"
+"%sΥơץɥ饤֤Ƥ"
-#: ../../standalone/drakbackup_.c:3500
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
-msgstr "ѡƥơ֥"
+msgstr "ơפ"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
+msgstr "ơפΥ٥뤬ޤäƤޤΥơפ%sǤ"
-#: ../../standalone/drakbackup_.c:3522
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
-msgstr "桼"
+msgstr "ͥåȥ"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
-msgstr ""
+msgstr "ʲΥͥåȥץȥ: %s"
-#: ../../standalone/drakbackup_.c:3523
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
-msgstr "ۥ̾:"
+msgstr "ۥ̾"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
-msgstr ""
+msgstr "ۥȤΥѥ⥸塼"
-#: ../../standalone/drakbackup_.c:3531
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
-msgstr "ѥ"
+msgstr "ѥɤפޤ"
-#: ../../standalone/drakbackup_.c:3537
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
-msgstr "桼̾"
+msgstr "桼̾פޤ"
-#: ../../standalone/drakbackup_.c:3540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
-msgstr "ۥ̾:"
+msgstr "ۥ̾פޤ"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
-msgstr ""
+msgstr "ѥ⥸塼뤬פޤ"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
-msgstr ""
+msgstr "줿ե..."
-#: ../../standalone/drakbackup_.c:3561
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
-msgstr "¾ե"
+msgstr "..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Хååפ"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr ""
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
-msgstr ""
+msgstr "CDå- ³"
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
-msgstr ""
+msgstr "repository򸫤"
-#: ../../standalone/drakbackup_.c:3863
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
-msgstr "ѡƥơ֥"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3891
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
-msgstr "桼"
+msgstr "ʹ"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "ɤ"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "¸"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Хåå׹"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr ""
-#: ../../standalone/drakbackup_.c:4229
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -11364,15 +11571,15 @@ msgstr ""
" ᡼Ǥޤ\n"
" sendmailꤷƤ"
-#: ../../standalone/drakbackup_.c:4253
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "ʲΥѥå󥹥ȡ뤵ޤ"
+msgstr ""
+"ʲΥѥåΥ󥹥ȡ뤬ɬפǤ:\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11380,19 +11587,19 @@ msgstr ""
"FTPǤΥեž˥顼.\n"
"FTP ʤƤ."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "ǡǤ͡"
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "ХååѥǥǤ͡"
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "ХååפǡǤ..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11400,60 +11607,59 @@ msgstr ""
"ե뤬Ĥޤ\n"
"ɤ򥯥åƤ"
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "ޤȯ...ԤäƤƤ"
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "ƥեХåå"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "桼եХåå"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "¾եХåå"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "ΤοʹԾ"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "FTPǥե"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "ե..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "ե뤫麣Хåå"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Хåå򸫤"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "ѥåå"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11513,7 +11719,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11527,7 +11733,7 @@ msgstr ""
" /etc/postfix/main.cf myhostname mydomain ꤷޤ\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11603,8 +11809,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11655,18 +11860,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -11696,7 +11902,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n"
" Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11773,7 +11979,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11790,7 +11996,7 @@ msgstr ""
"ˡޤϡɥɥ饤־˥Хåå׹ۤɬפˤʤޤ\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11811,7 +12017,7 @@ msgstr ""
"ΤǡޤΥǡäޤǤ顢Хå\n"
"åץǡΥեϼDzѤʤۤǤ\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11901,135 +12107,134 @@ msgid ""
"\n"
"OPTIONS:\n"
msgstr ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"ܥեȤϥե꡼եȥǡGNU GPLξﲼǺ۲ǽǤ롣\n"
+"\n"
+"ˡ: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
#: ../../standalone/drakbug_.c:47
msgid " --help - print this help message.\n"
-msgstr ""
+msgstr " --help - print this help message.\n"
#: ../../standalone/drakbug_.c:48
msgid " --report - program should be one of mandrake tools\n"
-msgstr ""
+msgstr " --report - program should be one of mandrake tools\n"
#: ../../standalone/drakbug_.c:49
msgid " --incident - program should be one of mandrake tools\n"
-msgstr ""
+msgstr " --incident - program should be one of mandrake tools\n"
#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
-msgstr ""
+msgstr "Mandrake Хġ"
#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
-msgstr ""
+msgstr "First Time Wizard"
#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
-msgstr ""
+msgstr "Ʊġ"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
-#, fuzzy
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
-msgstr "󥽡ġ"
+msgstr "Ωġ"
#: ../../standalone/drakbug_.c:73
-#, fuzzy
msgid "HardDrake"
-msgstr "ϡɥɥ饤֤"
+msgstr "HardDrake"
#: ../../standalone/drakbug_.c:74
-#, fuzzy
msgid "Mandrake Online"
-msgstr "Mandrake 󥵥ƥ"
+msgstr "Mandrake 饤"
#: ../../standalone/drakbug_.c:75
-#, fuzzy
msgid "Menudrake"
-msgstr "MandrakeStore"
+msgstr "Menudrake"
#: ../../standalone/drakbug_.c:76
-#, fuzzy
msgid "Msec"
-msgstr "ޥ"
+msgstr "Msec"
#: ../../standalone/drakbug_.c:77
-#, fuzzy
msgid "Remote Control"
-msgstr "⡼ȥץ"
+msgstr "⡼ȥȥ"
#: ../../standalone/drakbug_.c:78
-#, fuzzy
msgid "Software Manager"
-msgstr "̾"
+msgstr "եȥޥ͡"
#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
-msgstr ""
+msgstr "Urpmi"
#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
-msgstr ""
+msgstr "ɥܹԥġ"
#: ../../standalone/drakbug_.c:81
-#, fuzzy
msgid "Userdrake"
-msgstr "Printerdrake"
+msgstr "Userdrake"
#: ../../standalone/drakbug_.c:82
-#, fuzzy
msgid "Configuration Wizards"
-msgstr "ͥåȥꥦ"
+msgstr "ꥦ"
#: ../../standalone/drakbug_.c:97
-#, fuzzy
msgid "Application:"
-msgstr "ǧ"
+msgstr "ץꥱ: "
#: ../../standalone/drakbug_.c:98
-#, fuzzy
msgid "Package: "
-msgstr "ѥå"
+msgstr "ѥå: "
#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
-msgstr ""
+msgstr "ͥ: "
#: ../../standalone/drakbug_.c:100
-#, fuzzy
msgid "Release: "
-msgstr "Ԥ"
+msgstr "꡼: "
#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
+"\n"
+"\n"
+"ХФˤϡץܥ򥯥åƤ\n"
+"web֥饦 https://drakbug.mandrakesoft.com Фޤ\n"
+"񤬤ΤǡƤ嵭ξϤΥ\n"
+"žޤ\n"
+"\n"
-#: ../../standalone/drakbug_.c:136
-#, fuzzy
+#: ../../standalone/drakbug_.c:134
msgid "Report"
-msgstr "ݡ"
+msgstr ""
-#: ../../standalone/drakbug_.c:166
-#, fuzzy
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
-msgstr "󥤥󥹥ȡκ"
+msgstr "󥹥ȡ뤵Ƥޤ"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
-msgstr ""
+msgstr "Bugzillaɤ³..."
-#: ../../standalone/drakbug_.c:190
-#, fuzzy
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
-msgstr "%s Υ󥹥ȡ˥꡼󥷥åȤǽǤ"
+msgstr "֥饦ޤ󡪡󥹥ȡ뤷Ƥ"
#: ../../standalone/drakconnect_.c:79
#, c-format
@@ -12126,10 +12331,6 @@ msgstr "..."
msgid "Apply"
msgstr "Ŭ"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "ԤġŬѤƤޤ"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "³λ"
@@ -12253,7 +12454,7 @@ msgstr "⥸塼̾"
msgid "Size"
msgstr ""
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12318,26 +12519,27 @@ msgstr ""
msgid "Build the disk"
msgstr "ǥ"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "ǥХ %s ˥ǥäƤޤ"
-#: ../../standalone/drakfloppy_.c:426
-#, fuzzy, c-format
+# ../../standalone/drakfloppy_.c:426, c-format
+#: ../../standalone/drakfloppy_.c:381
+#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-"ǥХ %sΥǥޤ\n"
+"ǥХ %sΥǥʤ񤭹߶ػߤǤ\n"
"åȤƤ"
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "%s եǤޤ"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12552,7 +12754,7 @@ msgstr "󥿡ͥå³ζͭ"
#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
-msgstr ""
+msgstr "ߤޤ󤬡2.4ͥ뤷ݡȤޤ"
#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
@@ -12819,158 +13021,145 @@ msgstr ""
"\n"
"ꥦɤưˤϡפ򥯥åޤ礦"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "group"
-msgstr "롼"
+msgstr "롼"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
-msgstr ""
+msgstr "ѥ"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
-msgstr "ѡƥ %s"
+msgstr "ѡߥå"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "user"
-msgstr "桼̾"
+msgstr "桼"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
-msgstr ""
+msgstr ""
-#: ../../standalone/drakperm_.c:49
-#, fuzzy
+#: ../../standalone/drakperm_.c:50
msgid "delete"
msgstr ""
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
-msgstr ""
+msgstr "Խ"
-#: ../../standalone/drakperm_.c:51
-#, fuzzy
+#: ../../standalone/drakperm_.c:52
msgid "Down"
-msgstr "λ"
+msgstr ""
-#: ../../standalone/drakperm_.c:52
-#, fuzzy
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
-msgstr "⥸塼ɲ"
+msgstr "롼ɲ"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
-msgstr ""
+msgstr "/Խpermե"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
+"Drakperm ϡѡߥåͭԡ롼פ msecǤ뤿ΤΤ"
+"\n"
+"ޤǥեȤäƼʬΥ롼Խ뤳ȤǤޤ"
-#: ../../standalone/drakperm_.c:61
-#, fuzzy
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
-msgstr "ץɲ"
+msgstr "롼ɲ"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
-msgstr ""
+msgstr "ߤΥ롼Խ"
-#: ../../standalone/drakperm_.c:63
-#, fuzzy
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
-msgstr "٤Ƥ"
+msgstr "롼ʾ夲"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
-msgstr ""
+msgstr "롼ʲ"
-#: ../../standalone/drakperm_.c:65
-#, fuzzy
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
-msgstr "Τ"
+msgstr "롼"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
-msgstr ""
+msgstr "֥饦"
-#: ../../standalone/drakperm_.c:248
-#, fuzzy
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
-msgstr "դ桼"
+msgstr "ߤΥ桼"
-#: ../../standalone/drakperm_.c:253
-#, fuzzy
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
-msgstr "С: %s\n"
+msgstr "ѡߥå"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
-msgstr ""
+msgstr "ѥ"
-#: ../../standalone/drakperm_.c:255
-#, fuzzy
+#: ../../standalone/drakperm_.c:251
msgid "Property"
-msgstr "ݡ"
+msgstr "ץѥƥ"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
-msgstr ""
+msgstr "sticky-bit"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
-msgstr ""
+msgstr "UID"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
-msgstr ""
+msgstr "GID"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
+"ǥ쥯ȥ:\n"
+" ǥ쥯ȥ䡢ΥեνͭԤǤޤ"
-#: ../../standalone/drakperm_.c:315
-#, fuzzy
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
-msgstr "ưФȤ"
+msgstr "¹Ԥ˽ͭidȤ"
-#: ../../standalone/drakperm_.c:316
-#, fuzzy
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
-msgstr "ưФȤ"
+msgstr "¹Ԥ˥롼idȤ"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
-msgstr ""
+msgstr "åȡͭԤ䥰롼פѹޤ"
-#: ../../standalone/drakperm_.c:322
-#, fuzzy
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
-msgstr "ѥå¸"
+msgstr "ѥ"
-#: ../../standalone/drakperm_.c:368
-#, fuzzy
+#: ../../standalone/drakperm_.c:364
msgid "user :"
-msgstr "桼̾"
+msgstr "桼: "
-#: ../../standalone/drakperm_.c:370
-#, fuzzy
+#: ../../standalone/drakperm_.c:366
msgid "group :"
-msgstr "롼"
+msgstr "롼: "
-#: ../../standalone/draksound_.c:46
-#, fuzzy
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
-msgstr "³Ƥޤ"
+msgstr "ɥɤФޤǤ!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12981,137 +13170,145 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"ɥɤФǤޤǤLinuxǥݡȤƤ뤭Ⱥ"
+"ޤƤ뤫ǧƤ\n"
+"\n"
+"\n"
+"ҤΥϡɥǡ١⻲ȤƤ:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr "ǽˤ ImageMagickѥåɬפǤ"
+
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
-msgstr "֡ȥǥ"
+msgstr "first step"
-#: ../../standalone/draksplash_.c:77
-#, fuzzy
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
-msgstr ""
+msgstr "ǽ"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
-#, fuzzy
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
-msgstr "ե"
-
-#: ../../standalone/draksplash_.c:79
-#, fuzzy
-msgid "Theme name"
-msgstr "̾"
+msgstr "ե"
#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "󥹥ȡ"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "λ"
+msgid "Theme name"
+msgstr "ơ̾"
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "ƥƳ"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
+msgstr "֥饦"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
-#, fuzzy
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
-msgstr "ӥ"
-
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
+msgstr "ưץå"
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
-msgstr ""
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
+msgstr "ƥȥܥåxɸʸ"
#: ../../standalone/draksplash_.c:101
-msgid "text width"
-msgstr ""
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr "ƥȥܥåyɸʸ"
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
-msgstr ""
+msgid "text width"
+msgstr "ƥȤ"
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr ""
+msgid "text box height"
+msgstr "ƥȥܥåι⤵"
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
-msgstr ""
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr "ץ쥹СѤxɸ"
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
-msgstr ""
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr "ץ쥹СѤyɸ"
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
-msgstr ""
+msgid "the width of the progress bar"
+msgstr "ץ쥹С"
#: ../../standalone/draksplash_.c:107
-msgid "the color of the progress bar"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:119
-#, fuzzy
-msgid "go back"
-msgstr "롼ץХå"
+msgid "the heigth of the progress bar"
+msgstr "ץ쥹Сι⤵"
-#: ../../standalone/draksplash_.c:120
-#, fuzzy
-msgid "preview"
-msgstr "ǥХ"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
+msgstr "ץ쥹Сο"
#: ../../standalone/draksplash_.c:121
-#, fuzzy
-msgid "choose color"
-msgstr "˥Dz"
+msgid "Preview"
+msgstr "ץӥ塼"
+
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "ơ¸"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "Dz"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
-msgstr ""
+msgstr "󥽡˥ɽ"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
-msgstr ""
+msgstr "ͥåǥեȤǤϹ"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
-msgstr ""
+msgstr "ΥơޤϤޤưץå夬%sˤޤ!"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
-msgstr ""
+msgstr "ưץåơޤ¸..."
-#: ../../standalone/draksplash_.c:436
-#, fuzzy
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
-msgstr "ץ󥿤ε"
+msgstr "ץ쥹Сο"
-#: ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
-msgstr "ץ󥿤ǥХϡ"
+msgstr "ޤեǤ!"
-#: ../../standalone/draksplash_.c:463
-#, fuzzy
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
-msgstr "ǥХθǤġ"
+msgstr "ץӥ塼..."
+
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
#: ../../standalone/drakxtv_.c:49
msgid ""
@@ -13127,15 +13324,24 @@ msgid ""
"\n"
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"XawTV 󥹥ȡ뤵Ƥޤ!\n"
+"\n"
+"\n"
+"TV ɤΤ DrakX Ф (\"/etc/modules\"bttv saa7134\n"
+"⥸塼ʤ) xawtv⥤󥹥ȡ뤵ʤС\n"
+"\"lspcidrake -v -f\" η̤ \"install\\@mandrakesoft.com\"\n"
+"subject \"undetected TV card\"ǥ᡼뤷Ƥ\n"
+"\n"
+"\n"
+"󥹥ȡˤrootˤʤäƥ󥽡 \"urpmi xawtv\" ȥפޤ"
#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "ʥʥ֥"
#: ../../standalone/drakxtv_.c:66
-#, fuzzy
msgid "USA (broadcast)"
-msgstr "USA (bcast)"
+msgstr "USA ()"
#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
@@ -13146,14 +13352,12 @@ msgid "USA (cable-hrc)"
msgstr "USA (֥-hrc)"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "China (broadcast)"
-msgstr " (bcast)"
+msgstr " ()"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "Japan (broadcast)"
-msgstr " (bcast)"
+msgstr " ()"
#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
@@ -13164,9 +13368,8 @@ msgid "East Europe"
msgstr "衼å"
#: ../../standalone/drakxtv_.c:68
-#, fuzzy
msgid "France [SECAM]"
-msgstr "ե"
+msgstr "ե [SECAM]"
#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
@@ -13194,7 +13397,7 @@ msgstr "를"
#: ../../standalone/drakxtv_.c:72
msgid "Australian Optus cable TV"
-msgstr ""
+msgstr "ȥꥢOptus֥ƥ"
#: ../../standalone/drakxtv_.c:107
msgid ""
@@ -13221,25 +13424,24 @@ msgid "Scanning for TV channels"
msgstr "ƥӥͥõƤޤ"
#: ../../standalone/drakxtv_.c:125
-#, fuzzy
msgid "There was an error while scanning for TV channels"
-msgstr "ѥåΥ󥹥ȡǥ顼ȯ:"
+msgstr "ƥӥͥ˥顼ȯ"
#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
-msgstr ""
+msgstr "XawTV󥹥ȡ뤵Ƥޤ"
#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
-msgstr ""
+msgstr "ǡ"
#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
+msgstr "xawtvXɥǻȤޤ\n"
#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "ƥӥɤĤޤ"
#: ../../standalone/drakxtv_.c:154
msgid ""
@@ -13252,6 +13454,22 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"TV ɤФޤǤLinuxǥݡȤ줿ӥǥTVɤ"
+"Ƥ뤫Τޤ礦\n"
+"\n"
+"\n"
+"ҤΥϡɥǡ١⻲ȤƤ:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"Ȥ: harddrake [-h|--help] [--test]\n"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -13281,11 +13499,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "饤֥åץ졼ɤ򳫻ϤǤޤ!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "ѹλޤͭˤˤϤäȤƤ"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13398,9 +13616,8 @@ msgid "Content of the file"
msgstr "ե"
#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
-#, fuzzy
msgid "Mail alert"
-msgstr "Mail/SMS ٹ"
+msgstr "Mail ٹ"
#: ../../standalone/logdrake_.c:267
#, c-format
@@ -13408,69 +13625,59 @@ msgid "please wait, parsing file: %s"
msgstr "Ԥ򡢥ե %s õƤޤ"
#: ../../standalone/logdrake_.c:408
-#, fuzzy
msgid "Mail alert configuration"
-msgstr "Mail/SMS ٹ"
+msgstr "Mail ٹ"
#: ../../standalone/logdrake_.c:409
-#, fuzzy
msgid ""
"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Mail/SMS 桼ƥƥؤä㤤ޤ\n"
+"Mail 桼ƥƥؤä㤤ޤ\n"
"\n"
"ǤϷٹ𥷥ƥꤷޤ\n"
#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
-msgstr ""
+msgstr "Apache World Wide Web"
#: ../../standalone/logdrake_.c:417
-#, fuzzy
msgid "Domain Name Resolver"
-msgstr "ɥᥤ̾"
+msgstr "ɥᥤ̾"
#: ../../standalone/logdrake_.c:418
-#, fuzzy
msgid "Ftp Server"
-msgstr "NIS "
+msgstr "ftp "
#: ../../standalone/logdrake_.c:419
-#, fuzzy
msgid "Postfix Mail Server"
-msgstr "Postfix ᡼륵, Inn ˥塼"
+msgstr "Postfix ᡼륵"
#: ../../standalone/logdrake_.c:420
-#, fuzzy
msgid "Samba Server"
-msgstr "NIS "
+msgstr "samba "
#: ../../standalone/logdrake_.c:421
-#, fuzzy
msgid "SSH Server"
-msgstr "NIS "
+msgstr "SSH "
#: ../../standalone/logdrake_.c:422
-#, fuzzy
msgid "Webmin Service"
-msgstr "ӥ"
+msgstr "Webmin ӥ"
#: ../../standalone/logdrake_.c:423
-#, fuzzy
msgid "Xinetd Service"
-msgstr "ץ󥿥"
+msgstr "Xinetdӥ"
#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "ӥ"
#: ../../standalone/logdrake_.c:431
-#, fuzzy
msgid ""
"You will receive an alert if one of the selected services is no more running"
-msgstr "ʲӥߤޤä󤬽Фޤ"
+msgstr "ʲӥΤɤ줫ߤޤä󤬽Фޤ"
#: ../../standalone/logdrake_.c:443
msgid "load setting"
@@ -13485,9 +13692,8 @@ msgid "alert configuration"
msgstr "ٹ"
#: ../../standalone/logdrake_.c:458
-#, fuzzy
msgid "Please enter your email address below "
-msgstr "ѥɤϤƤ"
+msgstr "᡼륢ɥ쥹ϤƤ"
#: ../../standalone/logdrake_.c:497
msgid "Save as.."
@@ -13502,7 +13708,6 @@ msgid "Emulate third button?"
msgstr "ܥ򥨥ߥ졼Ȥޤ"
#: ../../standalone/printerdrake_.c:57
-#, fuzzy
msgid "Reading printer data ..."
msgstr "ץ󥿤ξɤǤޤ..."
@@ -13518,17 +13723,17 @@ msgstr "ݡȤΥƥ"
#: ../../standalone/scannerdrake_.c:81
#, c-format
msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr ""
+msgstr "%s ܥСMandrake LinuxǤϥݡȤƤޤ"
#: ../../standalone/scannerdrake_.c:56
-#, fuzzy, c-format
+#, c-format
msgid "%s found on %s, configure it?"
msgstr "%s %s ǸĤޤꤷޤ?"
#: ../../standalone/scannerdrake_.c:59
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
+msgstr "%sϥʥǡ١ˤޤ󡣼ưꤷޤ?"
#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
@@ -13545,19 +13750,21 @@ msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
+"Scannerdrake %s ʤ򸡽ФǤޤǤ\n"
+"ʤ³ƤǥХǤ"
#: ../../standalone/scannerdrake_.c:109
-#, fuzzy
msgid "choose device"
-msgstr "֡ȥǥХ"
+msgstr "ǥХ"
#: ../../standalone/scannerdrake_.c:115
-#, fuzzy, c-format
+#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
+"%s ʤprinterdrakeꤷƤ\n"
"printerdrake εưϡMandrake ȥ륻󥿡ΥϡɥιǹԤ"
"Ƥ"
@@ -13568,18 +13775,21 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"%s ʤꤵޤ\n"
+"ץꥱ˥塼Υޥǥեå顢Xsaneפ֤"
+"ʤȤޤ"
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr ""
+msgstr "%s ϡɥ饹ΥǥХΰޤ:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
+"\n"
+"%s 饹ΥǥХɲäޤ:\n"
#: ../../steps.pm_.c:14
msgid "Choose your language"
@@ -13653,7 +13863,7 @@ msgstr "ƥ๹򥤥󥹥ȡ"
msgid "Exit install"
msgstr "ƳȤλ"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
"adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-1,-*-fixed-medium-r-"
@@ -13709,7 +13919,7 @@ msgstr "ǥϢġ롧mp3, midi, ߥʤ"
#: ../../share/compssUsers:999
msgid "Linux Standard Base. Third party applications support"
-msgstr ""
+msgstr "Linux Standard Base. Third party applications support"
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
@@ -13864,7 +14074,7 @@ msgstr "ssh ʤɳƼץȥѥ饤"
#: ../../share/compssUsers:999
msgid "LSB"
-msgstr ""
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
@@ -13899,6 +14109,276 @@ msgid "Scientific Workstation"
msgstr "ʳإơ"
#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "ХФˤϡץܥ򥯥åƤ\n"
+#~ "web֥饦 https://www.bugzilla.com Фޤ\n"
+#~ "񤬤ΤǡƤ嵭ξϤΥ\n"
+#~ "žޤ\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "ưץå ƥå2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "lilosplash˹Ԥ"
+
+#~ msgid "Go back"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr "Υɥ (%s) ѤδΤOSS/ALSAإɥ饤Фޤ"
+
+#~ msgid ""
+#~ "Introduction\n"
+#~ "\n"
+#~ "The operating system and the different components available in the "
+#~ "Mandrake Linux distribution \n"
+#~ "shall be called the \"Software Products\" hereafter. The Software "
+#~ "Products include, but are not \n"
+#~ "restricted to, the set of programs, methods, rules and documentation "
+#~ "related to the operating \n"
+#~ "system and the different components of the Mandrake Linux distribution.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. License Agreement\n"
+#~ "\n"
+#~ "Please read this document carefully. This document is a license agreement "
+#~ "between you and \n"
+#~ "MandrakeSoft S.A. which applies to the Software Products.\n"
+#~ "By installing, duplicating or using the Software Products in any manner, "
+#~ "you explicitly \n"
+#~ "accept and fully agree to conform to the terms and conditions of this "
+#~ "License. \n"
+#~ "If you disagree with any portion of the License, you are not allowed to "
+#~ "install, duplicate or use \n"
+#~ "the Software Products. \n"
+#~ "Any attempt to install, duplicate or use the Software Products in a "
+#~ "manner which does not comply \n"
+#~ "with the terms and conditions of this License is void and will terminate "
+#~ "your rights under this \n"
+#~ "License. Upon termination of the License, you must immediately destroy "
+#~ "all copies of the \n"
+#~ "Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "2. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law.\n"
+#~ "MandrakeSoft S.A. will, in no circumstances and to the extent permitted "
+#~ "by law, be liable for any special,\n"
+#~ "incidental, direct or indirect damages whatsoever (including without "
+#~ "limitation damages for loss of \n"
+#~ "business, interruption of business, financial loss, legal fees and "
+#~ "penalties resulting from a court \n"
+#~ "judgment, or any other consequential loss) arising out of the use or "
+#~ "inability to use the Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
+#~ "or occurance of such \n"
+#~ "damages.\n"
+#~ "\n"
+#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
+#~ "SOME COUNTRIES\n"
+#~ "\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
+#~ "will, in no circumstances, be \n"
+#~ "liable for any special, incidental, direct or indirect damages whatsoever "
+#~ "(including without \n"
+#~ "limitation damages for loss of business, interruption of business, "
+#~ "financial loss, legal fees \n"
+#~ "and penalties resulting from a court judgment, or any other consequential "
+#~ "loss) arising out \n"
+#~ "of the possession and use of software components or arising out of "
+#~ "downloading software components \n"
+#~ "from one of Mandrake Linux sites which are prohibited or restricted in "
+#~ "some countries by local laws.\n"
+#~ "This limited liability applies to, but is not restricted to, the strong "
+#~ "cryptography components \n"
+#~ "included in the Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. The GPL License and Related Licenses\n"
+#~ "\n"
+#~ "The Software Products consist of components created by different persons "
+#~ "or entities. Most \n"
+#~ "of these components are governed under the terms and conditions of the "
+#~ "GNU General Public \n"
+#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+#~ "licenses allow you to use, \n"
+#~ "duplicate, adapt or redistribute the components which they cover. Please "
+#~ "read carefully the terms \n"
+#~ "and conditions of the license agreement for each component before using "
+#~ "any component. Any question \n"
+#~ "on a component license should be addressed to the component author and "
+#~ "not to MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
+#~ "License. Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
+#~ "the documentation for \n"
+#~ "further details.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Intellectual Property Rights\n"
+#~ "\n"
+#~ "All rights to the components of the Software Products belong to their "
+#~ "respective authors and are \n"
+#~ "protected by intellectual property and copyright laws applicable to "
+#~ "software programs.\n"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts, by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. \n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by "
+#~ "a court judgment, this \n"
+#~ "portion is excluded from this contract. You remain bound by the other "
+#~ "applicable sections of the \n"
+#~ "agreement.\n"
+#~ "The terms and conditions of this License are governed by the Laws of "
+#~ "France.\n"
+#~ "All disputes on the terms of this license will preferably be settled out "
+#~ "of court. As a last \n"
+#~ "resort, the dispute will be referred to the appropriate Courts of Law of "
+#~ "Paris - France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A. \n"
+#~ msgstr ""
+#~ "Ϥ\n"
+#~ "\n"
+#~ "ܥڥ졼ƥ󥰥ƥपMandrake Linuxǥȥӥ塼\n"
+#~ "󶡤ƼΥݡͥȤ򡢰ʲǤϡ֥եȥʡפȸƤ֡\n"
+#~ "եȥʤϡڥ졼ƥ󥰥ƥपMandrake Linuxǥ\n"
+#~ "ȥӥ塼󶡤ƼΥݡͥȤ˴Ϣץෲ\n"
+#~ "᥽åɡɥơޤब˸¤Τ\n"
+#~ "Ϥʤ\n"
+#~ "\n"
+#~ "\n"
+#~ "1. 饤Ʊջ\n"
+#~ "\n"
+#~ "ʸ򿵽ŤɤǤʸϤʤMandrake S.A.Ȥδ֤\n"
+#~ "뤵롢եȥʤŬѤ饤ƱջǤ\n"
+#~ "եȥʤ򤤤ʤǤ쥤󥹥ȡ롢ʣѤ뤳Ȥ\n"
+#~ "ʤŪˡܥ饤󥹤˽Ȥ\n"
+#~ "ƱդΤȤޤ\n"
+#~ "ܥ饤󥹤ΤʤʬǤƱդǤʤСեȥʤ\n"
+#~ "󥹥ȡ롢ʣѤǧޤ\n"
+#~ "ܥ饤󥹤ξŬ礷ʤǥեȥʤ򥤥󥹥ȡ\n"
+#~ "ʣѤ褦Ȥߤ̵Ǥꡢܥ饤󥹲ǤΤʤθ\n"
+#~ "å뤳ȤȤʤޤ饤󥹤˴ȼʤϥեȥ\n"
+#~ "ʤʣ٤Ƥ¨¤˲ʤФʤޤ\n"
+#~ "\n"
+#~ "\n"
+#~ "2. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law.\n"
+#~ "MandrakeSoft S.A. will, in no circumstances and to the extent permitted "
+#~ "by law, be liable for any special,\n"
+#~ "incidental, direct or indirect damages whatsoever (including without "
+#~ "limitation damages for loss of \n"
+#~ "business, interruption of business, financial loss, legal fees and "
+#~ "penalties resulting from a court \n"
+#~ "judgment, or any other consequential loss) arising out of the use or "
+#~ "inability to use the Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
+#~ "or occurance of such \n"
+#~ "damages.\n"
+#~ "\n"
+#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
+#~ "SOME COUNTRIES\n"
+#~ "\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
+#~ "will, in no circumstances, be \n"
+#~ "liable for any special, incidental, direct or indirect damages whatsoever "
+#~ "(including without \n"
+#~ "limitation damages for loss of business, interruption of business, "
+#~ "financial loss, legal fees \n"
+#~ "and penalties resulting from a court judgment, or any other consequential "
+#~ "loss) arising out \n"
+#~ "of the possession and use of software components or arising out of "
+#~ "downloading software components \n"
+#~ "from one of Mandrake Linux sites which are prohibited or restricted in "
+#~ "some countries by local laws.\n"
+#~ "This limited liability applies to, but is not restricted to, the strong "
+#~ "cryptography components \n"
+#~ "included in the Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. The GPL License and Related Licenses\n"
+#~ "\n"
+#~ "The Software Products consist of components created by different persons "
+#~ "or entities. Most \n"
+#~ "of these components are governed under the terms and conditions of the "
+#~ "GNU General Public \n"
+#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+#~ "licenses allow you to use, \n"
+#~ "duplicate, adapt or redistribute the components which they cover. Please "
+#~ "read carefully the terms \n"
+#~ "and conditions of the license agreement for each component before using "
+#~ "any component. Any question \n"
+#~ "on a component license should be addressed to the component author and "
+#~ "not to MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
+#~ "License. Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
+#~ "the documentation for \n"
+#~ "further details.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Intellectual Property Rights\n"
+#~ "\n"
+#~ "All rights to the components of the Software Products belong to their "
+#~ "respective authors and are \n"
+#~ "protected by intellectual property and copyright laws applicable to "
+#~ "software programs.\n"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts, by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. \n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by "
+#~ "a court judgment, this \n"
+#~ "portion is excluded from this contract. You remain bound by the other "
+#~ "applicable sections of the \n"
+#~ "agreement.\n"
+#~ "The terms and conditions of this License are governed by the Laws of "
+#~ "France.\n"
+#~ "All disputes on the terms of this license will preferably be settled out "
+#~ "of court. As a last \n"
+#~ "resort, the dispute will be referred to the appropriate Courts of Law of "
+#~ "Paris - France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A. \n"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI ϥե"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy ftp://... Ǥ"
+
+#~ msgid "quit"
+#~ msgstr "λ"
+
+#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
@@ -14437,9 +14917,6 @@ msgstr "ʳإơ"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "ƥ٥"
-
#~ msgid "Select a graphics card"
#~ msgstr "եåɤ򤷤Ʋ"
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index 5966e86c0..8330bed40 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
-"PO-Revision-Date: 2002-08-16 13:50+0900\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
+"PO-Revision-Date: 2002-09-09 09:08+0900\n"
"Last-Translator: Jaegeum Cze <baedaron@hanafos.com>\n"
"Language-Team: Korean <beadaron@hanafos.com>\n"
"MIME-Version: 1.0\n"
@@ -89,24 +89,24 @@ msgstr " 带 "
msgid "Use Xinerama extension"
msgstr "Xinerama Ȯ "
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "%s%s ī常 "
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s 3D ϵ "
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -115,17 +115,17 @@ msgstr ""
" ī XFree %sθ 3D ϵ ӱ ˴ϴ.\n"
" ī ¼ 2D ִ XFree %s մϴ."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr " ī XFree %s 3D ϵ ӱ մϴ."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s 3D ϵ "
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
": ̰ ̸ ǻ͸ ߰ ֽϴ.\n"
" ī ¼ 2D ִ XFree %s մϴ."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,12 +145,12 @@ msgstr ""
" ī XFree %sθ 3D ϵ ӱ ˴ϴ.\n"
": ̰ ̸ ǻ͸ ߰ ֽϴ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (ġ ǥ ̹)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr " "
@@ -170,32 +170,32 @@ msgstr "ػ"
msgid "Test"
msgstr "׽Ʈ"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "ɼǵ"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ȯ"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr ""
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -291,25 +291,25 @@ msgstr "ػ󵵿 ϼ"
msgid "Graphics card: %s"
msgstr "׷ ī: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../standalone/drakconnect_.c:115 ../../standalone/drakconnect_.c:147
-#: ../../standalone/drakconnect_.c:289 ../../standalone/drakconnect_.c:537
-#: ../../standalone/drakconnect_.c:679 ../../standalone/drakfloppy_.c:234
-#: ../../standalone/drakfloppy_.c:383 ../../standalone/drakfont_.c:970
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakconnect_.c:115
+#: ../../standalone/drakconnect_.c:147 ../../standalone/drakconnect_.c:289
+#: ../../standalone/drakconnect_.c:537 ../../standalone/drakconnect_.c:679
+#: ../../standalone/drakfloppy_.c:234 ../../standalone/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr ""
@@ -385,11 +385,11 @@ msgstr "XFree86 : %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ̹: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "۽ ٷ X "
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -398,7 +398,7 @@ msgstr ""
"ýÿ ڵ X찡 ۵ǵ Ҽ ֽϴ.\n"
"ٽ ڵ X ۵DZ ϼ?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -410,7 +410,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "TV ī尡  մϱ?"
@@ -482,7 +482,7 @@ msgstr "ѵ "
msgid "compact"
msgstr "Ʈ "
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr " "
@@ -490,17 +490,17 @@ msgstr " "
msgid "Delay before booting default image"
msgstr "⺻ ̹ õ ð"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "ȣ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "ȣ (Ȯ)"
@@ -534,14 +534,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "ɼ: ɼѡ ȣ ɼ ϴ."
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "ٽ õϼ."
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "ȣ ġ ʽϴ."
@@ -578,7 +578,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -586,155 +586,155 @@ msgstr ""
" ׸ ⿡ ǥõǰ ֽϴ.\n"
" ߰ϰų, ͵ Ҽ ֽϴ."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "߰"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Ϸ"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr ""
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr " ׸ ߰Ͻðڽϱ?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr ""
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Ÿ OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Ÿ OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Ÿ OS (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "̹"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Ʈ"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "߰"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "ʱȭ ũ"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "б-"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "̺"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr ""
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "׸"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "⺻"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "ũ 뷮"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr " "
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "׸ "
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr " ׸ ʽϴ."
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Ŀ ̹ ּ."
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Ʈ Ƽ ݵ Ǿ մϴ."
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr " ׸ ̹ ǰ ֽϴ."
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ̽ Ǿϴ."
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr " ٸ ġǾ ֽϱ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr " ٸ %s ̽ ġǾ ֽϱ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "ƴϿ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr ""
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "ϵ "
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%sī ̹ %s ġ"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(%s )"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -745,17 +745,17 @@ msgstr ""
"ɼ ``̸= ̸2=2 ...'' մϴ..\n"
", ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr " ɼǵ:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr " %s ̹ õ ϱ?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -772,15 +772,15 @@ msgstr ""
"ڵ˻ ¼ٰ ǻ͸ ߰ ֽϴ.,\n"
"ġ Ѽ ʽϴ."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "ڵ˻"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "ɼ "
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -789,63 +789,61 @@ msgstr ""
"%s о̴µ ߽ϴ.\n"
"ٸ ٽ õ ðڽϱ?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "X α׷ ׼"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "RPM ׼"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "su"
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "ý ׼"
-#: ../../any.pm_.c:754
-#, fuzzy
+#: ../../any.pm_.c:755
msgid "access to network tools"
-msgstr "RPM ׼"
+msgstr "Ʈ ׼"
-#: ../../any.pm_.c:755
-#, fuzzy
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
-msgstr "RPM ׼"
+msgstr " ׼"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(̹ %s() ߰Ǿϴ.)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr " ȣ ʹ ܼմϴ."
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "ڸ Է ּ"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "ڸ ҹڳ , '-' ׸ '_' Եɼ ֽϴ."
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr " ʹ ϴ."
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr " ڸ ̹ ߰Ǿ ֽϴ."
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr " ߰"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -854,32 +852,32 @@ msgstr ""
" Է\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr " 㰡"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr " ̸"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "ڸ"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr " ؼ"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "ڵα"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -887,54 +885,54 @@ msgstr ""
"ڵ Ư ڷμ αεǵ ֽϴ.\n"
"̷ Ư ϼ?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "⺻ ڸ ϼ:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr " Ŵ ϼ:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "  ּ."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "ġ ٸ ٸ  Ҽ ֽϴ."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr ""
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr " "
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr ""
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Ű %s ʿմϴ. ġϰڽϱ?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "NFS , ̿Ͻðڽϱ?"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "ʼ Ű %s ϴ."
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -943,41 +941,41 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "ڵ巹ũ "
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "ȿ ŰȾ"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr ""
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "ǥ"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr ""
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr " "
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "ְ"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -987,7 +985,7 @@ msgstr ""
"ϰ ſ ΰϰ ۵մϴ: ͳ̳ Ʈ ýۿ\n"
"δ . ȣ ϴ."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -995,23 +993,20 @@ msgstr ""
"ȣ , Ʈ ǻͷ ϱ⿡ "
"ϴ."
-#: ../../any.pm_.c:1083
-#, fuzzy
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-" Ŭ̾Ʈμ ͳݿ ϴµ ǥ ȵԴϴ.\n"
-" ޺ ý ˱ ֽϴ. "
+" Ŭ̾Ʈμ ͳݿ ϴµ ǥ ȵԴϴ."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
-#, fuzzy
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1022,43 +1017,43 @@ msgid ""
msgstr ""
" ȵ ý ְ ˴ϴ.\n"
" ȵ ܺ Ŭ̾Ʈ ޾Ƶ̴µ ־ \n"
-" ȵԴϴ. "
+" ȵԴϴ. : ͳ Ŭ̾Ʈ ǻ͸ Ѵٸ, "
+" ϼ."
-#: ../../any.pm_.c:1088
-#, fuzzy
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-" 4 ˴ϴ. ý ܺٿ ݸ˴ϴ.\n"
-"ְ Դϴ."
+" ް , ý ܺٿ ݸ˴ϴ. ְ "
+"Դϴ."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "DrakSec ⺻ ɼ"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "ϴ ܰ踦 ּ."
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr " "
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr " libsafe "
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr " ħ̳ ȭ ڿ ̺귯."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr " (α Ǵ ̸)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1066,7 +1061,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1086,58 +1081,58 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "ݰϴ. ü ñ, ׷Դϴ."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "/boot մϴ."
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "ũž"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr " ޴"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "%sƼǿ Ʈδ ġ ϴ.\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr " غ ʾҽϴ.\n"
@@ -1189,103 +1184,102 @@ msgstr "LILO/Grub "
msgid "Yaboot mode"
msgstr "Yaboot "
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "׸ ġ"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "ܼϿ ׸ ̱"
-#: ../../bootlook.pm_.c:150
-#, fuzzy
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
-msgstr " Ƽ "
+msgstr " ׸ "
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "%s %s.old "
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:116
#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:355
#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/interactive.pm_.c:474
#: ../../diskdrake/smbnfs_gtk.pm_.c:45 ../../fsedit.pm_.c:239
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr ""
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr " ޽ ϴ."
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "%s %s "
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr " ޽ ϴ."
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr " ޽ ã ϴ."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "%s "
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr " "
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "׸ ġ !"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1294,21 +1288,21 @@ msgstr ""
" Ʈ ڷ %s ϰ ֽϴ.\n"
" 縦 Ϸ ."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr ""
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "÷ "
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "׸"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1317,44 +1311,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr " ũ"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Ʈ÷"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "ý "
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr " X-Window "
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "ƴϿ, ڵα ʽϴ."
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ", ڵα մϴ."
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../standalone/drakconnect_.c:108
#: ../../standalone/drakconnect_.c:140 ../../standalone/drakconnect_.c:296
#: ../../standalone/drakconnect_.c:435 ../../standalone/drakconnect_.c:521
#: ../../standalone/drakconnect_.c:564 ../../standalone/drakconnect_.c:667
-#: ../../standalone/drakfloppy_.c:376 ../../standalone/drakfont_.c:612
-#: ../../standalone/drakfont_.c:799 ../../standalone/drakfont_.c:876
-#: ../../standalone/drakfont_.c:963 ../../standalone/logdrake_.c:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Ȯ"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab ϴ: %s"
@@ -1390,14 +1384,13 @@ msgid "%d seconds"
msgstr "%d "
#: ../../common.pm_.c:159
-#, fuzzy
msgid "Can't make screenshots before partitioning"
-msgstr "̻ Ƽ ߰ ϴ."
+msgstr "Ƽ ũ ϴ."
#: ../../common.pm_.c:166
-#, fuzzy, c-format
+#, c-format
msgid "Screenshots will be available after install in %s"
-msgstr "ġ ٸ ٸ  Ҽ ֽϴ."
+msgstr "ũ ġĿ %s ֽϴ."
#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
#: ../../network/tools.pm_.c:113
@@ -1452,53 +1445,58 @@ msgstr "Ʈ"
msgid "United States"
msgstr "̱"
-#: ../../diskdrake/dav.pm_.c:23
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr " "
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "𸶿Ʈ"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ʈ"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:379
#: ../../diskdrake/interactive.pm_.c:568 ../../diskdrake/interactive.pm_.c:595
#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
#: ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ʈ ġ"
-#: ../../diskdrake/dav.pm_.c:81
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
-msgstr "CD ڴ ӵ Էϼ."
+msgstr "WebDAV URL Էϼ."
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
-msgstr ""
+msgstr ":"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ʈ ġ: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "ɼǵ: %s"
@@ -1553,9 +1551,8 @@ msgid "Details"
msgstr "󼼼"
#: ../../diskdrake/hd_gtk.pm_.c:252
-#, fuzzy
msgid "No hard drives found"
-msgstr "͸ ã ϴ!"
+msgstr "ϵ ũ ã ϴ."
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
@@ -1587,7 +1584,7 @@ msgstr ""
#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:325
#: ../../install_steps_gtk.pm_.c:383 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Ÿ"
@@ -1729,7 +1726,7 @@ msgstr ""
" Ƽ ̺ ũⰡ ʽϴ.\n"
" Ͻðڽϱ?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr ""
@@ -1848,9 +1845,9 @@ msgstr ""
"loopback ϼ."
#: ../../diskdrake/interactive.pm_.c:594
-#, fuzzy, c-format
+#, c-format
msgid "Where do you want to mount %s?"
-msgstr "ġ %s Ʈ Ͻðڽϱ?"
+msgstr "%s Ʈ Ͻðڽϱ?"
#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
@@ -2108,9 +2105,9 @@ msgid ", %s sectors"
msgstr ", %s "
#: ../../diskdrake/interactive.pm_.c:1112
-#, fuzzy, c-format
+#, c-format
msgid "Cylinder %d to %d\n"
-msgstr "%d Ǹ %d Ǹ\n"
+msgstr "Ǹ %d %d\n"
#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
@@ -2223,23 +2220,21 @@ msgid "on channel %d id %d\n"
msgstr "%d 󿡼 ID %d\n"
#: ../../diskdrake/interactive.pm_.c:1186
-#, fuzzy
msgid "Filesystem encryption key"
-msgstr "Ͻý : "
+msgstr "Ͻý ȣȭ Ű"
#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr " ý ȣȭ Ű "
#: ../../diskdrake/interactive.pm_.c:1190
-#, fuzzy, c-format
+#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr " ȣ ʹ ܼմϴ.(  %d ڴ Ѿ մϴ)"
+msgstr " ȣȭ Ű ʹ ܼմϴ.(  %d ڴ Ѿ մϴ)"
#: ../../diskdrake/interactive.pm_.c:1191
-#, fuzzy
msgid "The encryption keys do not match"
-msgstr "ȣ ġ ʽϴ."
+msgstr "ȣȭ Ű ġ ʽϴ."
#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
@@ -2263,14 +2258,12 @@ msgid "Can't login using username %s (bad password?)"
msgstr ""
#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
-#, fuzzy
msgid "Domain Authentication Required"
-msgstr " "
+msgstr " ʿմϴ."
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Another one"
-msgstr "ͳ"
+msgstr " ٸ "
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
msgid "Which username"
@@ -2281,7 +2274,7 @@ msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "ڸ"
@@ -2293,23 +2286,23 @@ msgstr ""
msgid "Search servers"
msgstr " ˻"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s (̺ %s)"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s %s ̹Ƿ Ҽ ϴ."
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s 𸶿Ʈ ߻: %s"
@@ -2371,17 +2364,16 @@ msgid "This directory should remain within the root filesystem"
msgstr " 丮 Ʈ Ͻý ȿ ־ մϴ."
#: ../../fsedit.pm_.c:530
-#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-" Ʈ ġ Ʈ Ͻý (ext2, reiserfs) Ʈ Ǿ մϴ.\n"
+" Ʈ ġ Ʈ Ͻý (ext2, reiserfs, xfs, jfs) ʿմϴ.\n"
#: ../../fsedit.pm_.c:532
-#, fuzzy, c-format
+#, c-format
msgid "You can't use an encrypted file system for mount point %s"
-msgstr " %s Ʈ Ʈ LVM ϴ. "
+msgstr " %s Ʈ ġ ȣȭ Ͻý ϴ. "
#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
@@ -2396,47 +2388,107 @@ msgstr " ."
msgid "Error opening %s for writing: %s"
msgstr "%s ߻: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
-msgstr "CUPS "
+msgstr " "
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
-msgstr "̹"
+msgstr "̹:"
+
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "ٷ ּ... ϰ ֽϴ."
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "ٷ ּ"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
-msgstr " "
+msgstr " ̹"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2541,9 +2593,8 @@ msgid "the vendor name of the device"
msgstr ""
#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
msgid "Alternative drivers"
-msgstr " Ȱȭ (A4)"
+msgstr "ü ̹"
#: ../../harddrake/ui.pm_.c:39
msgid "the list of alternative drivers for this sound card"
@@ -2554,7 +2605,8 @@ msgid "/_Quit"
msgstr "/(_Q)"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/(_H)"
@@ -2573,69 +2625,70 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/ (_R)"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/(_A)..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "ϵ 巹ũ "
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr ":"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "ϵ 巹ũ 2 "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "˻ ϵ"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr ""
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr " "
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr " "
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "˻ "
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "ٷ ּ"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "%s ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "ι°"
@@ -4188,7 +4241,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4213,7 +4266,7 @@ msgstr ""
"\n"
" ġմϱ?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4222,20 +4275,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS ̴ εɽƮ ϴ."
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "÷ ũ %s ̺꿡 "
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr " ÷ ũ FAT ƴմϴ."
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4243,12 +4296,12 @@ msgstr ""
" Ű ø ҷ, ``linux defcfg=floppy'' ԷϿ "
"ġ ϼ."
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "%s д ߻߽ϴ."
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -4490,7 +4543,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "%s Ű ȯմϴ."
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "÷ ̺긦 ϴ."
@@ -4522,11 +4575,11 @@ msgstr "ġ "
msgid "Please choose one of the following classes of installation:"
msgstr " ġ ϳ ּ."
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Ű ׷ "
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr " Ű "
@@ -4602,7 +4655,7 @@ msgstr "ڵ õ Ű ̱"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "ġ"
@@ -4622,7 +4675,7 @@ msgstr "ּ ġ"
msgid "Choose the packages you want to install"
msgstr "ġϰ ϴ Ű ϼ."
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "ġ"
@@ -4649,17 +4702,17 @@ msgid "Installing package %s"
msgstr "%s Ű ġ"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr ""
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "ź"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4674,16 +4727,16 @@ msgstr ""
" CDROM ʴٸ, ҡ ߰ ġ ϼ."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr " մϱ?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Ű ϴ ߻:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr " Ű ġ ߻߽ϴ: "
@@ -4779,7 +4832,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4857,7 +4910,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Ű"
@@ -5060,29 +5113,29 @@ msgstr "Ű ø ÷ ũ ."
msgid "Selected size is larger than available space"
msgstr "õ 뷮 ִ Ůϴ."
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5092,16 +5145,16 @@ msgstr ""
" ʴٸ, ҡ, \n"
"Ϻθ ִٸ, CD Ŀ ȮΡ ."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "%s ǥõ CDROM"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "ġ غԴϴ"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5110,21 +5163,21 @@ msgstr ""
" %s Ű ġ ... \n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "ġ ȯ漳"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr " ÷Ǹ %s ̺꿡 "
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ʈ ÷Ǹ %s ̺꿡 "
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5163,7 +5216,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5175,154 +5228,154 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "ȿ ̷ ޱ ǵ巹ũ Ʈ ..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Ű ̷ Ʈ ּ."
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "밡 Ű Ʈ ̷ Ʈ ؼ ޽ϴ."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr " ð Դϱ?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "ϵ ð GMT "
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "ڵ ð ȭ (NTP )"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP "
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr " CUPS "
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "ISA ī尡 ֽϱ?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "༳"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "콺"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "ð"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN ī"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr " ī"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV ī"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr " ϵ"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "root ȣ "
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "ȣ "
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr " ȣ ʹ ܼմϴ.(  %d ڴ Ѿ մϴ)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr " LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP DN"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP "
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr " NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -5338,19 +5391,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr " ڸ"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5368,19 +5421,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "ù° ÷ ̺"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "ι° ÷ ̺"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "dzʶٱ"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5403,7 +5456,7 @@ msgstr ""
"ðڽϱ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5412,28 +5465,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "˼մϴ. 밡 ÷ ̺갡 ϴ."
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Ʈ ũ 鶧 ÷ ̺긦 ּ"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "%s Ǹ ."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Ʈ ũ "
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Ʈ δ غ"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5441,11 +5494,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "aboot Ͻðڽϱ?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5453,15 +5506,15 @@ msgstr ""
"aboot ġ . \n"
"ù° Ƽ Ѽ ġұ?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Ʈδ ġ "
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Ʈδ ġ ߽ϴ. ߻߽ϴ:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5478,17 +5531,17 @@ msgstr ""
"shut-down\n"
"׷ ʹ Ʈδ Ʈ Դϴ."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s ̺꿡 ÷ ũ "
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "ڵ ġ ÷ ũ "
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5498,8 +5551,8 @@ msgstr ""
"\n"
" Ͻðڽϱ?"
-#: ../../install_steps_interactive.pm_.c:1316
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1317
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5520,23 +5573,23 @@ msgstr ""
"Ʈ ̵ ϰ ϼ.\n"
"\n"
"\n"
-" ǵ巹ũ ׼ http://www.linux-mandrake.com/"
-"en/82errata.php3\n"
+" ǵ巹ũ ׼ \n"
+"%s\n"
" ֽϴ.\n"
"\n"
"\n"
"ġ ý ǵ巹ũ ̵带\n"
"Ͻñ ٶϴ."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
-msgstr ""
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "ڵ ġ ÷ ũ "
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5550,15 +5603,15 @@ msgstr ""
"\n"
"Ϲ ġϴ ϴ.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "ڵ"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "õ"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "õ Ű "
@@ -5594,14 +5647,14 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- "
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr ""
@@ -6044,7 +6097,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "ȯ Ʈ %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr " ּ.\n"
@@ -6104,9 +6157,8 @@ msgid "Genius NetScroll"
msgstr "Ͼ ݽũ"
#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
msgid "Microsoft Explorer"
-msgstr "ũμƮ ڸ콺"
+msgstr "ũμƮ ͽ÷η"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
@@ -6180,24 +6232,23 @@ msgstr ""
msgid "No mouse"
msgstr "콺 "
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "콺 ׽Ʈϼ."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "콺 ȰȭϷ"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "콺 ."
#: ../../my_gtk.pm_.c:64
-#, fuzzy
msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
msgstr ""
-"-adobe-helvetica-bold-r-normal--16-*-75-75-p-*-iso8859-1,-*-gulim-bold-r-"
-"normal--16-*-75-75-*-*-ksc5601.1987-0,*-r-*"
+"-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-1,-*-gulim-bold-r-normal--"
+"25-*-*-*-c-*-ksc5601.1987-0,*-r-*"
#: ../../my_gtk.pm_.c:159
msgid "Finish"
@@ -6227,11 +6278,11 @@ msgstr "Ʈ "
msgid "Toggle between flat and group sorted"
msgstr "׷캰/Ű ȯ"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "ͳݿ "
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6241,53 +6292,43 @@ msgstr ""
",  쿡 PPTP, 幰Դ DHCP ˴ϴ.\n"
" 𸣰ڴٸ, PPPOE 롹 ϼ."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "ī ǵġ USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "DHCP "
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "PPPOE "
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "PPTP "
#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
msgid "Web Server"
-msgstr ""
+msgstr " "
#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
msgid "Domain Name Server"
-msgstr " ذ"
+msgstr " "
#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
msgid "Mail Server"
-msgstr " "
+msgstr " "
#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
msgid "POP and IMAP Server"
-msgstr "LDAP "
+msgstr "POP and IMAP "
#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
msgid "No network card"
-msgstr "Ʈ ī带 ã ϴ"
+msgstr "Ʈ ī "
#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
msgid ""
"drakfirewall configurator\n"
"\n"
@@ -6295,9 +6336,9 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"TinyFirewall \n"
+"巹ũ ȭ \n"
"\n"
-"̰ ǵ巹ũ ý ȭ մϴ.\n"
+"̰ ǵ巹ũ ý ȭ մϴ.\n"
" ȭ ϰ ʹٸ, ǵ巹ũ ȭ\n"
" Ͻñ ٶϴ."
@@ -6325,9 +6366,8 @@ msgid "Everything (no firewall)"
msgstr ""
#: ../../network/drakfirewall.pm_.c:164
-#, fuzzy
msgid "Other ports"
-msgstr "Ʈ ˻"
+msgstr "Ÿ Ʈ"
#: ../../network/ethernet.pm_.c:37
msgid ""
@@ -6358,7 +6398,7 @@ msgstr " ͷ ͳݿ ϼ."
msgid "no network card found"
msgstr "Ʈ ī带 ã ϴ"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Ʈ "
@@ -6374,15 +6414,15 @@ msgstr ""
"ȣƮ Ϻ ̾ մϴ.\n"
")mybox.mylab.myco.com"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:367
msgid "Host name"
msgstr "ȣƮ:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Ʈ "
@@ -6430,8 +6470,8 @@ msgid "Old configuration (isdn4net)"
msgstr " (ISDN4NET)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN "
@@ -6467,23 +6507,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr " Ͻðڽϱ?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr " ī带 ֽϱ?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "𸣰"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6496,19 +6541,19 @@ msgstr ""
"\n"
" PCMCIA ī带 ִٸ, IRQ IO ˰ ־ մϴ.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr ""
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr " ISDN īԴϱ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6516,7 +6561,7 @@ msgstr ""
"ISDN PCI ī尡 Ǿ, ϴ. ȭ鿡 PCI ī"
"带 ּ."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "ISDN PCI ī ˻ . ȭ鿡 ּ."
@@ -6568,7 +6613,7 @@ msgstr "ù° DNS (ɼ)"
msgid "Second DNS Server (optional)"
msgstr "ι° DNS (ɼ)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6576,7 +6621,7 @@ msgstr ""
"\n"
" ϰų ٽ ֽϴ."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6584,11 +6629,11 @@ msgstr ""
"\n"
" ٽ ֽϴ."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr " ͳݿ Ǿ ֽϴ."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6596,32 +6641,32 @@ msgstr ""
"\n"
"ͳݿ ϰų 缳 ֽϴ."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr " ͳݿ Ǿ ʽϴ."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr ""
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr " "
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "ͳ & "
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr " %s Դϴ."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6640,12 +6685,12 @@ msgstr ""
"\n"
"Ϸ ȮΡ ."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ʈ ȯ "
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6657,7 +6702,7 @@ msgstr ""
"ȮΡ ϰų, ҡ ͳ/Ʈ "
"ٽ ϼ.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6669,72 +6714,72 @@ msgstr ""
" ͳ/Ʈ Ϸ մϴ.\n"
"ڵ ˻ ϰ ʴٸ, üũڽ ϼ.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr " ϼ."
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "ڵ˻ "
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr " "
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "ġ ˻ϰ ֽϴ..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Ϲ "
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "%s Ʈ ߰"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN "
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s ߰"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL "
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "̽ %s󿡼 ߰"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "ij̺ "
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "ij̺ ߰"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN "
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "̴ ī ߰"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr " ϼ."
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6744,23 +6789,23 @@ msgstr ""
"ῡ ϼ.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "ͳ "
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "ýÿ ϵ ϰڽϱ?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Ʈ "
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Ʈ ٽ ؾ մϴ."
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6771,7 +6816,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6781,7 +6826,7 @@ msgstr ""
"\n"
" ýۿ Դϴ.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6789,14 +6834,14 @@ msgstr ""
"Ϸ Ŀ, X ٽ Ͽ ȣƮ 濡 \n"
" ߻ Ͻñ ٶϴ."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6807,7 +6852,7 @@ msgstr ""
"׳ ϼ.\n"
"Ʒ Է¶ ϸ  ˴ϴ."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6817,42 +6862,42 @@ msgstr ""
" ׸. е IP ּҷ Էؾ մϴ.\n"
"(, 1.2.3.4)"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "%s Ʈ ī "
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (%s ̹)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ּ"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "ݸũ"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP ڵҴ"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "ý "
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ּҴ 1.2.3.4 ̾ մϴ."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6864,42 +6909,53 @@ msgstr ""
"̸̾ մϴ. \n"
"Ʈ ̰ ִٸ IP ּҵ Էؾ մϴ."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS "
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "rpdlxmdnpdl (. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Ʈ ġ"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP ּҴ 1.2.3.4 ̾ մϴ."
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP ּҴ 1.2.3.4 ̾ մϴ."
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr " "
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr " "
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP "
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Ʈī ID (ž )"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr " ̸ httP://... ̾ մϴ."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr " ̸ ftp://... ̾ մϴ."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "ּҴ http: ؾ մϴ."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7357,9 +7413,8 @@ msgid "Printerdrake"
msgstr "͵巹ũ"
#: ../../printerdrake.pm_.c:178
-#, fuzzy
msgid "Checking your system..."
-msgstr "μ ý ..."
+msgstr "ý ˻ ..."
#: ../../printerdrake.pm_.c:186
msgid ""
@@ -8301,7 +8356,7 @@ msgstr "͡%s󿡼 μ "
#: ../../printerdrake.pm_.c:2350 ../../printerdrake.pm_.c:2353
#: ../../printerdrake.pm_.c:2354 ../../printerdrake.pm_.c:2355
#: ../../printerdrake.pm_.c:3400 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8349,7 +8404,7 @@ msgid "Transfer printer configuration"
msgstr " "
#: ../../printerdrake.pm_.c:2437
-#, fuzzy, c-format
+#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
"s to %s, your current spooler. All the configuration data (printer name, "
@@ -8357,53 +8412,48 @@ msgid ""
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-"Ǯ %s Ǯ %s\n"
-" ֽϴ. (͸, , ġ,\n"
-" , ׸ ⺻ ɼǰ) Ѱ Դϴ.\n"
-"׷ ۾ ۵ ʽϴ.\n"
+"Ǯ %s Ǯ %s ֽϴ. "
+" (͸, , ġ, , ׸ ⺻ ɼǰ) "
+" Դϴ. ׷ ۾ ۵ ʽϴ.\n"
" Ͽ ť ۵ ϴ:\n"
#: ../../printerdrake.pm_.c:2440
-#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-"CUPS 뺧 ͳ ɾ ͸ \n"
-"ʹ ʽϴ.\n"
+"CUPS 뺧 ͳ ɾ ͸ ʹ "
+" ʽϴ.\n"
#: ../../printerdrake.pm_.c:2442
-#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-"LPQ , LPD ׸ /TCP\n"
-"͸ մϴ.\n"
+"LPQ , LPD ׸ /TCP ͸ մ"
+".\n"
#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD LPRng IPP ͸ ʽϴ.\n"
#: ../../printerdrake.pm_.c:2446
-#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-"׸ , α׷̳ Foomatic \n"
-" ť ۵ ϴ."
+"׸ , α׷̳ Foomatic ť ۵ "
+" ϴ."
#: ../../printerdrake.pm_.c:2447
-#, fuzzy
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
"\n"
-" ü PPD ̳ CUPS ̹\n"
-" ͵ ۵ ϴ."
+" ü PPD ̳ CUPS ̹ ͵ "
+" ϴ."
#: ../../printerdrake.pm_.c:2448
msgid ""
@@ -8456,14 +8506,13 @@ msgid "Transferring %s..."
msgstr "%s ..."
#: ../../printerdrake.pm_.c:2500
-#, fuzzy, c-format
+#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-" ⺻ (%s) Ͽϴ.\n"
-" ý %sϿ װ ⺻ Ͱ\n"
-"ǵ Ͻðڽϱ?"
+" ⺻ (%s) Ͽϴ. ý %sϿ װ "
+" ⺻ Ͱ ǵ Ͻðڽϱ?"
#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
@@ -8488,25 +8537,21 @@ msgid "Network functionality not configured"
msgstr "Ʈ ʾҽϴ."
#: ../../printerdrake.pm_.c:2556
-#, fuzzy
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""
-" ͸ Ϸ մϴ. ׷ ؼ Ʈ\n"
-"ϰ ־ ϴµ, Ʈ Ǿ ʽϴ.\n"
-"Ʈ ϸ, ϰ ִ ͸\n"
-" ϴ.\n"
-" Ͻðڽϱ?"
+" ͸ Ϸ մϴ. ׷ ؼ Ʈ ϰ ־ ϴ"
+", Ʈ Ǿ ʽϴ. Ʈ ϸ, "
+" ϰ ִ ͸ ϴ.  Ͻðڽϱ?"
#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "Ʈ "
#: ../../printerdrake.pm_.c:2592
-#, fuzzy
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8515,25 +8560,19 @@ msgid ""
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
-"ġ Ʈ ϴ.\n"
-"ý õ , Ʈ ڵ ǵ Ǿ ִ\n"
-"Ȯϰ, ǵ巹ũ (Ʈ ͳݡ->᡹)\n"
-" ̿Ͽ ùٸ ϼ.׸ ٽ ǵ巹ũ (ϵ"
-"->͡)\n"
-" ̿Ͽ, \n"
-"ٽ ."
+"ġ Ʈ ϴ. ý õ , Ʈ"
+" ڵ ǵ Ǿ ִ Ȯϰ, ǵ巹ũ (Ʈ "
+"ݡ/᡹) ̿Ͽ ùٸ ϼ.׸ ٽ ǵ巹ũ "
+" (ϵ/͡) ̿Ͽ, ٽ ."
#: ../../printerdrake.pm_.c:2593
-#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-"Ʈ Ұ, ϴ.\n"
-"Ʈ ϵ ּ.\n"
-"׸ ٽ õ\n"
-"."
+"Ʈ Ұ, ϴ. Ʈ ϵ "
+" ּ. ׸ ٽ õ ."
#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
@@ -8643,9 +8682,8 @@ msgid "Printer options"
msgstr " ɼ"
#: ../../printerdrake.pm_.c:2989
-#, fuzzy
msgid "Preparing Printerdrake..."
-msgstr "͵巹ũ غ ..."
+msgstr " 巹ũ غ ..."
#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
@@ -8863,11 +8901,6 @@ msgstr ""
"FTP Էϼ.\n"
"FTP ð ʿٸ, μ."
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "ּҴ http: ؾ մϴ."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8915,6 +8948,43 @@ msgstr "mkraid (raidtool ġǾ ֽϴ.)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "RAID %d Ƽǵ ʽϴ.\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr " "
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr " "
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr " (α Ǵ ̸)"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (⺻)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "ϴ ܰ踦 ּ."
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "ġ غԴϴ. ٸ."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA ( Űó) ý "
@@ -9045,7 +9115,6 @@ msgstr ""
"˴ϴ."
#: ../../services.pm_.c:47
-#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9218,7 +9287,7 @@ msgstr "ͳ"
msgid "File sharing"
msgstr " "
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "ý"
@@ -9274,12 +9343,10 @@ msgid "Stop"
msgstr ""
#: ../../share/advertising/01-thanks.pl_.c:9
-#, fuzzy
msgid "Thank you for choosing Mandrake Linux 9.0"
-msgstr "ǵ巹ũ 8.2 ּż մϴ."
+msgstr "ǵ巹ũ 9.0 ּż մϴ."
#: ../../share/advertising/01-thanks.pl_.c:10
-#, fuzzy
msgid "Welcome to the Open Source world"
msgstr " ҽ 迡 ȯմϴ."
@@ -9291,9 +9358,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/02-community.pl_.c:9
-#, fuzzy
msgid "Get involved in the Free Software world"
-msgstr " Ʈ 迡 "
+msgstr " Ʈ 迡 ϼ."
#: ../../share/advertising/02-community.pl_.c:10
msgid "Want to know more about the Open Source community?"
@@ -9306,13 +9372,12 @@ msgid ""
msgstr ""
#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
msgid "Get the most from the Internet"
-msgstr "ͳݿ "
+msgstr "ͳݿ ."
#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 has selected the best softwares for you. Surf the Web and "
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
@@ -9357,14 +9422,13 @@ msgstr " ̽"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
msgid "Development simplified"
-msgstr ""
+msgstr " "
#: ../../share/advertising/08-development.pl_.c:10
msgid "Mandrake Linux 9.0 is the ultimate development platform"
@@ -9382,13 +9446,13 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:9
msgid "Optimize your security"
-msgstr ""
+msgstr " ȭ"
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
@@ -9398,7 +9462,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9413,7 +9477,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9449,9 +9513,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
msgid "Become a MandrakeExpert"
-msgstr "ǵ巹ũ"
+msgstr "ǵ巹ũ Ǽ."
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
@@ -9462,14 +9525,13 @@ msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your others by becoming a recognized Expert on the "
-"online technical support website:"
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
msgstr ""
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert Corporate"
-msgstr "ǵ巹ũ"
+msgstr "ǵ巹ũ "
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
msgid "An online platform to respond to company's specific support needs"
@@ -9499,11 +9561,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Ű ġ ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "α׾ƿϰ Crtl-Alt-BackSpaceŰ ."
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr " Ϸ %s α ϼ."
@@ -9544,16 +9606,6 @@ msgstr " ߰/"
msgid "Add/Del Clients"
msgstr "Ŭ̾Ʈ ߰/"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr ""
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Ʈ ÷"
@@ -9602,48 +9654,63 @@ msgstr " ߰ -->"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Ŭ̾Ʈ "
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "DHCPD ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr " "
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "÷Ǹ ־ ּ:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "ȿ ̺긦 ã ϴ!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9772,13 +9839,12 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
-#, fuzzy
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "ü "
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9787,41 +9853,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "ȣ "
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "%s ϴ: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9832,65 +9898,64 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "ý ..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "ϵ ũ ϵ"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr " ..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "ٸ ..."
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
-msgstr " "
+msgstr " ϴ!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9898,294 +9963,294 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " .\n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr " "
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "ý :"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr " ڸ Ȯϼ."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr " ׸ "
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "(FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "ڵ"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "Ʈ "
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
msgstr ""
+" \n"
+""
#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "ȣƮ ̸ Ǵ IP Էϼ."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "̵ Էϼ."
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "йȣ Էϼ."
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "йȣ "
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1921
-#, fuzzy
-msgid "Please choose your CD/DVD media size"
-msgstr "CD 뷮 ϼ."
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "CD/DVD 뷮 ϼ."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "CDRW ü ϰ ִ Ȯϼ."
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "CDRW ü ϰ ִ Ȯϼ."
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "CDRW ü ϰ ִ Ȯϼ."
-#: ../../standalone/drakbackup_.c:1940
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
-msgstr ""
+msgstr " "
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "CDRW ü ϰ ִ Ȯϼ."
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "CDRW ü ϰ ִ Ȯϼ."
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
-msgstr " ġ "
+msgstr "CD ġ ǵ ʾҽϴ!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "ϱ Ȯϼ."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr "ϱ Ȯϼ."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "ϱ Ȯϼ."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr " 丮 ϼ."
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr " Ͽ "
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Ʈ"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "ϵ ũ / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr ""
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "Ž"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "ſ"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr " "
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10193,7 +10258,7 @@ msgstr ""
" ð \n"
"ϼ."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10201,567 +10266,559 @@ msgstr ""
" ü\n"
"ϼ."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr " :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr ""
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "ð"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "߰ ɼ"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "巹ũ "
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr " ϼ."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "ϵ ̺"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "Ʈ "
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr " ϼ."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr " ý"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr " "
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr "ġ: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "ɼǵ"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr " װ Ǵ ϼ."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "ٸ ϵ Ϸ, OK ."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "ý :"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr " ¥ ϼ."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "ϵ ũ "
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr " 丮 ϼ:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP "
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr " "
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "ϵ ũ "
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr " ϵ 丮 Էϼ."
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "ٸ ü "
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "ٸ ü"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "ý "
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "ڵ "
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "ٸ ͵ "
-#: ../../standalone/drakbackup_.c:3263
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
-msgstr "([/] ſ) 丮 "
+msgstr "([/] ſ) "
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "ϱ 丮 "
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
-msgstr " ׸ "
+msgstr ""
+"õ \n"
+""
-#: ../../standalone/drakbackup_.c:3409
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
-msgstr "ٸ ͵ "
+msgstr ""
+" \n"
+""
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:3479
+#, c-format
msgid "Backup files not found at %s."
-msgstr "%s %s.old "
+msgstr "%s ã ϴ."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
-msgstr "ϵ ũ "
+msgstr "CDκ "
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
-msgstr "Ƽ ̺ "
+msgstr "κ "
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
-msgstr "ڵ "
+msgstr "Ʈ "
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
-msgstr "ȣƮ:"
+msgstr "ȣƮ"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
-msgstr "ȣ"
+msgstr "ȣ ʿմϴ."
-#: ../../standalone/drakbackup_.c:3537
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
-msgstr "ڸ"
+msgstr "ڸ ʿմϴ."
-#: ../../standalone/drakbackup_.c:3540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
-msgstr "ȣƮ:"
+msgstr "ȣƮ ʿմϴ."
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
-msgstr "ٸ ͵ "
+msgstr " ..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr " "
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
-msgstr "Ƽ ̺ "
+msgstr "īŻα׷κ "
-#: ../../standalone/drakbackup_.c:3891
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
-msgstr "ڵ "
+msgstr " "
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr ""
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr ""
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr " Ű ġ Դϴ."
+msgstr ""
+" Ű ġǾ մϴ.\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr " ͸ ϼ..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr " ü ϼ..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr " ͸ ϼ..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "ý "
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr " "
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "ٸ "
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "ü "
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "FTP "
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr " ..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr " Ϸκ "
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr " "
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr " "
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr " "
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr " "
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "巹ũ "
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10793,7 +10850,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10802,7 +10859,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10843,7 +10900,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10871,17 +10928,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10898,7 +10955,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10938,7 +10995,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10949,7 +11006,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10962,7 +11019,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11044,8 +11101,8 @@ msgid "Synchronization tool"
msgstr "ȭ "
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr " "
@@ -11110,26 +11167,26 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr ""
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "ġ ʾҽϴ."
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr " 翡 ..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr " ã ϴ! ġ ּ."
@@ -11229,10 +11286,6 @@ msgstr "..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "ٷ ּ... ϰ ֽϴ."
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr ""
@@ -11352,7 +11405,7 @@ msgstr " ̸"
msgid "Size"
msgstr "ũ"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "巹ũ÷"
@@ -11417,12 +11470,12 @@ msgstr ""
msgid "Build the disk"
msgstr "ũ "
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "%s ġ ü ִ Ȯϼ."
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11431,12 +11484,12 @@ msgstr ""
"%s ġ ü ų, Ǿ ֽϴ.\n"
"ü ־ ּ."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "б ϴ: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11893,158 +11946,140 @@ msgstr ""
"\n"
"縦 Ϸ ."
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "group"
-msgstr "۾ ׷"
+msgstr "׷"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
-msgstr ""
+msgstr ""
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
-msgstr "Ƽ %s"
+msgstr "㰡"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "user"
msgstr ""
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
-msgstr ""
+msgstr ""
-#: ../../standalone/drakperm_.c:49
-#, fuzzy
+#: ../../standalone/drakperm_.c:50
msgid "delete"
msgstr ""
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
-msgstr ""
+msgstr ""
-#: ../../standalone/drakperm_.c:51
-#, fuzzy
+#: ../../standalone/drakperm_.c:52
msgid "Down"
-msgstr "Ϸ"
+msgstr "Ʒ"
-#: ../../standalone/drakperm_.c:52
-#, fuzzy
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
-msgstr " ߰"
+msgstr "Ģ ߰"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
-#, fuzzy
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
-msgstr " ߰"
+msgstr " Ģ ߰"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
-msgstr ""
+msgstr " Ģ "
-#: ../../standalone/drakperm_.c:63
-#, fuzzy
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
-msgstr " "
+msgstr "õ Ģ ܰ "
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
-msgstr ""
+msgstr "õ Ģ ܰ Ʒ"
-#: ../../standalone/drakperm_.c:65
-#, fuzzy
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
-msgstr " ׸ "
+msgstr "õ Ģ "
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
-msgstr ""
+msgstr "ãƺ"
-#: ../../standalone/drakperm_.c:248
-#, fuzzy
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
-msgstr " 㰡"
+msgstr " "
-#: ../../standalone/drakperm_.c:253
-#, fuzzy
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
-msgstr ": %s\n"
+msgstr "㰡"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
-msgstr ""
+msgstr ""
-#: ../../standalone/drakperm_.c:255
-#, fuzzy
+#: ../../standalone/drakperm_.c:251
msgid "Property"
-msgstr "Ʈ"
+msgstr "Ӽ"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
-msgstr ""
+msgstr "ƼŰ Ʈ"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
-msgstr ""
+msgstr "UID "
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
-msgstr ""
+msgstr "GID "
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
-#, fuzzy
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
-msgstr "ڵ˻ "
+msgstr " ̵ "
-#: ../../standalone/drakperm_.c:316
-#, fuzzy
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
-msgstr "ڵ˻ "
+msgstr " ׷ ̵ "
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
-#, fuzzy
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
-msgstr "÷ "
+msgstr " "
-#: ../../standalone/drakperm_.c:368
-#, fuzzy
+#: ../../standalone/drakperm_.c:364
msgid "user :"
-msgstr ""
+msgstr ":"
-#: ../../standalone/drakperm_.c:370
-#, fuzzy
+#: ../../standalone/drakperm_.c:366
msgid "group :"
-msgstr "۾ ׷"
+msgstr "׷:"
-#: ../../standalone/draksound_.c:46
-#, fuzzy
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
-msgstr "TV ī带 ã ϴ!"
+msgstr "ī带 ã ϴ!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12056,137 +12091,135 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
-#, fuzzy
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
-msgstr "Ʈ ũ "
+msgstr "ù ܰ "
-#: ../../standalone/draksplash_.c:77
-#, fuzzy
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
-msgstr "ػ"
+msgstr " ػ"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
-#, fuzzy
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
-msgstr " "
-
-#: ../../standalone/draksplash_.c:79
-#, fuzzy
-msgid "Theme name"
-msgstr " ̸"
+msgstr "̹ "
#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "ġ ȯ漳"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr ""
+msgid "Theme name"
+msgstr "׸ ̸"
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "׸ ġ"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
+msgstr "ãƺ"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
-#, fuzzy
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
-msgstr "Ʈ÷ ̸⸦ ϴ."
-
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
+msgstr "Ʈ÷ ׸ "
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
-msgid "the color of the progress bar"
+msgid "the heigth of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
-#, fuzzy
-msgid "go back"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:120
-#, fuzzy
-msgid "preview"
-msgstr "ġ"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
+msgstr ""
#: ../../standalone/draksplash_.c:121
-#, fuzzy
-msgid "choose color"
-msgstr "͸ ϼ"
+msgid "Preview"
+msgstr "̸"
+
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "׸ "
#: ../../standalone/draksplash_.c:124
-#, fuzzy
+msgid "Choose color"
+msgstr " "
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
-msgstr "ܼϿ ׸ ̱"
+msgstr "ܼϻ ΰ ̱"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
-#, fuzzy
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
-msgstr " "
+msgstr "ื "
-#: ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
-msgstr " Ǵ ġ Է Ǵ ؾ մϴ!"
+msgstr " ̹ ؾ մϴ!"
-#: ../../standalone/draksplash_.c:463
-#, fuzzy
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
-msgstr "ġ ˻ ..."
+msgstr "̸ ..."
+
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
#: ../../standalone/drakxtv_.c:49
msgid ""
@@ -12323,6 +12356,14 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+": harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ": keyboarddrake [--expert] [Ű]\n"
@@ -12351,11 +12392,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "̺ ׷̵带 ϴ!!! \n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr " Ϸ Ǿ, DZ ؼ αؾ մϴ."
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "α׵巹ũ"
@@ -12578,9 +12619,9 @@ msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
#: ../../standalone/scannerdrake_.c:56
-#, fuzzy, c-format
+#, c-format
msgid "%s found on %s, configure it?"
-msgstr "μ Ͻðڽϱ?"
+msgstr "%s %s ߰ߵǾϴ. Ͻðڽϱ?"
#: ../../standalone/scannerdrake_.c:59
#, c-format
@@ -12623,16 +12664,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12707,7 +12745,7 @@ msgstr "ý Ʈ ġ"
msgid "Exit install"
msgstr "ġ "
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
"-adobe-helvetica-bold-r-normal--16-*-75-75-p-*-iso8859-1,-*-gulim-bold-r-"
@@ -12762,9 +12800,8 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr " ; mp3/midi ÷̾, ͼ, "
#: ../../share/compssUsers:999
-#, fuzzy
msgid "Linux Standard Base. Third party applications support"
-msgstr " ǥ ȣȯ Ű"
+msgstr " ǥ . ܺ ø̼ "
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
@@ -12952,288 +12989,17 @@ msgstr "Ƽ̵ - CD "
msgid "Scientific Workstation"
msgstr " ũ̼"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Ʈ÷ ̸⸦ ϴ."
-
-#~ msgid ""
-#~ "The first time you try the X configuration, you may not be very "
-#~ "satisfied\n"
-#~ "with its display (screen is too small, shifted left or right...). Hence,\n"
-#~ "even if X starts up correctly, DrakX then asks you if the configuration\n"
-#~ "suits you. It will also propose to change it by displaying a list of "
-#~ "valid\n"
-#~ "modes it could find, asking you to select one.\n"
-#~ "\n"
-#~ "As a last resort, if you still cannot get X to work, choose \"Change\n"
-#~ "graphics card\", select \"Unlisted card\", and when prompted on which\n"
-#~ "server, choose \"FBDev\". This is a failsafe option which works with any\n"
-#~ "modern graphics card. Then choose \"Test again\" to be sure."
-#~ msgstr ""
-#~ "ó X õ , ȭ ̻ϰ ֽϴ.\n"
-#~ "(ȭ ʹ ۰ų, Ȥ ġ ֽϴ.)\n"
-#~ "׷ , X Ǵ 巹ũX Բ \n"
-#~ " Դϴ. ִ ȿ ȭ\n"
-#~ " ǥؼ ְ Դϴ.\n"
-#~ "\n"
-#~ "ƹ ص X ۵ǰ ٸ, ׷ ī 桹 "
-#~ "ϰ\n"
-#~ "Ͽ ī塹 ϼ. ׸ , FBDev"
-#~ "\n"
-#~ "ϼ. ̰ ɼ̸ ׷ ī ȣȯ˴"
-#~ ".\n"
-#~ "׸ , ٽ ׽Ʈ Ͽ Ȯϼ."
-
-#~ msgid "Internet and Messaging"
-#~ msgstr "ͳݰ ޽¡"
-
-#~ msgid "Multimedia and Graphics"
-#~ msgstr "Ƽ̵ ׷"
-
-#~ msgid "Server Software"
-#~ msgstr " Ʈ"
-
-#~ msgid "MandrakeCampus"
-#~ msgstr "ǵ巹ũķ۽"
-
-#~ msgid "MandrakeConsulting"
-#~ msgstr "ǵ巹ũ"
-
-#~ msgid "MandrakeStore"
-#~ msgstr "ǵ巹ũ"
-
-#~ msgid "LBA (doesn't work on old BIOSes)"
-#~ msgstr "LBA ( BIOS鿡 ۵ ֽϴ.)"
-
-#~ msgid "You don't have any partitions!"
-#~ msgstr " Ƽǵ ʽϴ."
-
-#~ msgid ""
-#~ "DiskDrake failed to read correctly the partition table.\n"
-#~ "Continue at your own risk!"
-#~ msgstr ""
-#~ "ũ巹ũ Ƽ ̺ Ȯ оµ ߽ϴ.\n"
-#~ " غ 쿡 ϼ!"
-
-#~ msgid ""
-#~ "I can't read your partition table, it's too corrupted for me :(\n"
-#~ "I'll try to go on blanking bad partitions"
-#~ msgstr ""
-#~ "ϵ ũ Ƽ ̺ ϴ. ʹ ϴ. :"
-#~ "(\n"
-#~ "߸ Ƽ ⸦ õ Դϴ."
-
-#~ msgid "Firewalling Configuration"
-#~ msgstr "ȭ "
-
-#~ msgid "Firewalling configuration"
-#~ msgstr "ȭ "
-
-#~ msgid ""
-#~ "Firewalling\n"
-#~ "\n"
-#~ "You already have set up a firewall.\n"
-#~ "Click on Configure to change or remove the firewall"
-#~ msgstr ""
-#~ "ȭ\n"
-#~ "\n"
-#~ "ȭ ̹ Ǿ ֽϴ.\n"
-#~ "ȭ Ǵ Ϸ, ."
-
-#~ msgid ""
-#~ "Firewalling\n"
-#~ "\n"
-#~ "Click on Configure to set up a standard firewall"
-#~ msgstr ""
-#~ "ȭ\n"
-#~ "\n"
-#~ "ǥ ȭ Ϸ, ."
-
-#~ msgid ""
-#~ "We'll now ask you questions about which services you'd like to allow\n"
-#~ "the Internet to connect to. Please think carefully about these\n"
-#~ "questions, as your computer's security is important.\n"
-#~ "\n"
-#~ "Please, if you're not currently using one of these services, firewall\n"
-#~ "it off. You can change this configuration anytime you like by\n"
-#~ "re-running this application!"
-#~ msgstr ""
-#~ " ͳκ ִ 񽺿 Դϴ.\n"
-#~ "ǻ Ȼ ߿ϹǷ ؼ Ͻñ ٶϴ.\n"
-#~ "\n"
-#~ " ߿ ʴ ִٸ, ȭ ϴ.\n"
-#~ " α׷ ٽ ν \n"
-#~ " ֽϴ!"
-
-#~ msgid ""
-#~ "Are you running a web server on this machine that you need the whole\n"
-#~ "Internet to see? If you are running a webserver that only needs to be\n"
-#~ "accessed by this machine, you can safely answer NO here.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "׳ 𼭶 ִ մϱ?\n"
-#~ " ǻͿ ִ Ѵٸ,\n"
-#~ "ϰ ƴϿ .\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "Are you running a name server on this machine? If you didn't set one\n"
-#~ "up to give away IP and zone information to the whole Internet, please\n"
-#~ "answer no.\n"
-#~ "\n"
-#~ msgstr ""
-#~ " մϱ?\n"
-#~ " IP ü ͳ ʾҴٸ,\n"
-#~ "ƴϿ .\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-#~ "is a telnet-replacement that you might use to login. If you're using\n"
-#~ "telnet now, you should definitely switch to ssh. telnet is not\n"
-#~ "encrypted -- so some attackers can steal your password if you use\n"
-#~ "it. ssh is encrypted and doesn't allow for this eavesdropping."
-#~ msgstr ""
-#~ " (SSH) Ͻðڽϱ?\n"
-#~ "̰ ܺο αϱ Ǵ ڳ α׷\n"
-#~ "Դϴ. ڳ ϰ ִٸ, SSH ٲټ.\n"
-#~ "ڳ ȣȭ Ǿ ʱ , ڳ ,\n"
-#~ "ܺ ڰ ȣ ĥ ֽϴ. SSH ȣȭ ϱ\n"
-#~ " ̷ ûκ մϴ."
-
-#~ msgid ""
-#~ "Do you want to allow incoming telnet connections?\n"
-#~ "This is horribly unsafe, as we explained in the previous screen. We\n"
-#~ "strongly recommend answering No here and using ssh in place of\n"
-#~ "telnet.\n"
-#~ msgstr ""
-#~ "ܺ ڳ Ͻðڽϱ?\n"
-#~ " ȭ鿡 ߵ, ̰ Դϴ.\n"
-#~ "ƴϿ SSH \n"
-#~ "մϴ.\n"
-
-#~ msgid ""
-#~ "Are you running an FTP server here that you need accessible to the\n"
-#~ "Internet? If you are, we strongly recommend that you only use it for\n"
-#~ "Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-#~ "attackers, since FTP also uses no encryption for transferring passwords.\n"
-#~ msgstr ""
-#~ "ͳݿ ִ FTP մϱ?\n"
-#~ " ׷ϴٸ, ͸ Ӹ \n"
-#~ "մϴ. FTP ȣȭ ʱ \n"
-#~ "FTP ۵Ǵ  ȣ ڿ ֽϴ.\n"
-
-#~ msgid ""
-#~ "Are you running a mail server here? If you're sending you \n"
-#~ "messages through pine, mutt or any other text-based mail client,\n"
-#~ "you probably are. Otherwise, you should firewall this off.\n"
-#~ "\n"
-#~ msgstr ""
-#~ " մϱ?\n"
-#~ " pine, mutt Ǵ ؽƮ α׷ Ѵٸ, \n"
-#~ "ʿմϴ. ׷ ʴٸ ȭ .\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "Are you running a POP or IMAP server here? This would\n"
-#~ "be used to host non-web-based mail accounts for people via \n"
-#~ "this machine.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "POP Ǵ IMAP մϱ?\n"
-#~ "̰ ڵ鿡 ƴ \n"
-#~ " ˴ϴ.\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "You appear to be running a 2.2 kernel. If your network IP\n"
-#~ "is automatically set by a computer in your home or office \n"
-#~ "(dynamically assigned), we need to allow for this. Is\n"
-#~ "this the case?\n"
-#~ msgstr ""
-#~ "2.2 Ŀ ϰ ִ մϴ. Ʈ IP Ǵ 繫\n"
-#~ " ٸ ǻʿ ڵ Ҵȴٸ( IP),\n"
-#~ "̰ ʿմϴ.\n"
-#~ "̿ ȯ濡 ֽϱ?\n"
-
-#~ msgid ""
-#~ "Is your computer getting time syncronized to another computer?\n"
-#~ "Mostly, this is used by medium-large Unix/Linux organizations\n"
-#~ "to synchronize time for logging and such. If you're not part\n"
-#~ "of a larger office and haven't heard of this, you probably \n"
-#~ "aren't."
-#~ msgstr ""
-#~ " ǻ ð ٸ ǻͿ ȭ ˴ϱ?\n"
-#~ "밳 ̰ ߱ н/ ܿ α Ǵ\n"
-#~ " 뵵θ ˴ϴ. ǻͰ Ը\n"
-#~ "繫 Ʈ ϰ ʰų, ̰Ϳ ó\n"
-#~ " ٸ, Ƹ ʿ Դϴ."
-
-#~ msgid ""
-#~ "Configuration complete. May we write these changes to disk?\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ msgstr ""
-#~ " Ϸ. ũ ұ?\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-
-#~ msgid "Can't open %s for writing: %s\n"
-#~ msgstr "%s ϴ: %s\n"
-
-#~ msgid "No I don't need DHCP"
-#~ msgstr "ƴϿ | DHCP ʿϴ."
-
-#~ msgid "Yes I need DHCP"
-#~ msgstr " | DHCP ʿմϴ."
-
-#~ msgid "No I don't need NTP"
-#~ msgstr "ƴϿ | NTP ʿϴ."
-
-#~ msgid "Yes I need NTP"
-#~ msgstr " | NTP ʿմϴ."
-
-#~ msgid "Don't Save"
-#~ msgstr " "
-
-#~ msgid "Save & Quit"
-#~ msgstr " "
-
-#~ msgid "Firewall Configuration Wizard"
-#~ msgstr "ȭ "
-
-#~ msgid "No (firewall this off from the internet)"
-#~ msgstr "ƴϿ (ͳݿ ݸ)"
-
-#~ msgid "Yes (allow this through the firewall)"
-#~ msgstr " (ȭ )"
-
-#~ msgid "Please Wait... Verifying installed packages"
-#~ msgstr " ٸ... ġ Ű Ȯ Դϴ."
-
-#~ msgid "Basic Options"
-#~ msgstr "⺻ ɼ"
-
-#~ msgid "Security Checks"
-#~ msgstr " "
-
-#~ msgid "Data list to include on CDROM."
-#~ msgstr "CDROM "
-
-#~ msgid "Please choose your CD space"
-#~ msgstr "CD 뷮 ϼ."
-
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "CD ڴ ӵ Էϼ."
-
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "CD ġ Ʈ ϼ."
-
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "ּҴ ftp: ؾ մϴ."
-
-#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "CD ġ Ʈ Ȯϼ."
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "ν÷ "
+
+#~ msgid "Go back"
+#~ msgstr "ư"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr " ̸ ftp://... ̾ մϴ."
+
+#~ msgid "quit"
+#~ msgstr ""
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index d7f3137ee..3ce3eade4 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-12-23 13:50+0200\n"
"Last-Translator: Mykolas Norvaias <Myka@centras.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -88,24 +88,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr "Naudokite automatin aptikim"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Tinklo Konfigravimo Meistras"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s su 3D renginio akseleracija"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -114,17 +114,17 @@ msgstr ""
"Tavo plokt palaiko 3D renginio akseleracij, bet tik su XFree %s.\n"
"Tavo plokt dirba su XFree %s, kuris galbt geriau palaiko 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Tavo plokt palaiko 3D akseleracij su XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s su EKSPERIMENTINE 3D renginio akseleracija"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
"KOMPIUTER.\n"
"Js korta dirba su XFree %s kuris galbt geriau palaiko 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,12 +145,12 @@ msgstr ""
"Js korta palaiko 3D akseleracija su XFree %s.ATMINKITE, KAD TAI YRA "
"EKSPERIMENTINIS PALIKYMAS IR GALI PAKABINTI KOMPIUTER."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Prisitaikyti"
@@ -171,32 +171,32 @@ msgstr "Skiriamoji geba"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/removable.pm_.c:25
#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Pasirinktys"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310
-#: ../../standalone/drakbackup_.c:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Gerai"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Ieiti"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -292,25 +292,25 @@ msgstr "Pasirink skiriamj geb ir spalv gyl"
msgid "Graphics card: %s"
msgstr "Vaizdo plokt: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124